From 0cf8f25b6cd9808f25eff072c3fbb1b20aec185c Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Tue, 9 Jun 2020 16:21:11 -0700 Subject: [PATCH 01/15] add new classes neede for vwan custom routing --- .../Common/NetworkResourceManagerProfile.cs | 18 +++++- .../Models/Cortex/PSExpressRouteConnection.cs | 3 + .../Cortex/PSHubVirtualNetworkConnection.cs | 3 + .../Cortex/PSP2SConnectionConfiguration.cs | 3 + .../Models/Cortex/PSRoutingConfiguration.cs | 60 +++++++++++++++++++ .../Network/Models/Cortex/PSVHubRouteTable.cs | 57 ++++++++++++++++++ .../Network/Models/Cortex/PSVpnConnection.cs | 3 + 7 files changed, 146 insertions(+), 1 deletion(-) create mode 100644 src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs create mode 100644 src/Network/Network/Models/Cortex/PSVHubRouteTable.cs diff --git a/src/Network/Network/Common/NetworkResourceManagerProfile.cs b/src/Network/Network/Common/NetworkResourceManagerProfile.cs index dd59b4ae95fd..93969c899a90 100644 --- a/src/Network/Network/Common/NetworkResourceManagerProfile.cs +++ b/src/Network/Network/Common/NetworkResourceManagerProfile.cs @@ -1097,7 +1097,7 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); - //// SDWAN + //// VirtualWan cfg.CreateMap() .AfterMap((src, dest) => { @@ -1169,6 +1169,22 @@ private static void Initialize() cfg.CreateMap(); cfg.CreateMap(); + //// Virtual Wan Custom Routing + // CNM to MNM + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + + // MNM to CNM + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + cfg.CreateMap(); + // Virtual wan Point to site // MNM to CNM cfg.CreateMap(); diff --git a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs index c16397f3ae53..bd4e3382f058 100644 --- a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs +++ b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs @@ -31,6 +31,9 @@ public class PSExpressRouteConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } + [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] public string ProvisioningState { get; set; } diff --git a/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs b/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs index a7ef5f70541d..36578008f313 100644 --- a/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs +++ b/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs @@ -26,5 +26,8 @@ public class PSHubVirtualNetworkConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } + + [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] + public PSRoutingConfiguration RoutingConfiguration { get; set; } } } diff --git a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs index 1fd243ca277c..dcd3090ee6cc 100644 --- a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs +++ b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs @@ -25,6 +25,9 @@ public class PSP2SConnectionConfiguration : PSChildResource public PSAddressSpace VpnClientAddressPool { get; set; } + [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [JsonIgnore] public string VpnClientAddressPoolText { diff --git a/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs new file mode 100644 index 000000000000..4ae597e5454b --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs @@ -0,0 +1,60 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network.Models +{ + using System; + using System.Collections.Generic; + using System.Text; + using Microsoft.WindowsAzure.Commands.Common.Attributes; + + public class PSRoutingConfiguration + { + [Ps1Xml(Label = "Associated Route Table", Target = ViewControl.Table)] + public PSResourceId AssociatedRouteTable { get; set; } + + [Ps1Xml(Label = "Propagated Route Tables", Target = ViewControl.Table)] + public PSPropagatedRouteTable PropagatedRouteTables { get; set; } + + [Ps1Xml(Label = "Vnet Routes", Target = ViewControl.Table)] + public PSVnetRoute VnetRoute { get; set; } + } + + public class PSPropagatedRouteTable + { + [Ps1Xml(Label = "Labels", Target = ViewControl.Table)] + public List Labels { get; set; } + + [Ps1Xml(Label = "Ids", Target = ViewControl.Table)] + public List Ids { get; set; } + } + + public class PSVnetRoute + { + [Ps1Xml(Label = "Static Routes", Target = ViewControl.Table)] + public List StaticRoutes { get; set; } + } + + public class PSStaticRoute + { + [Ps1Xml(Label = "Name", Target = ViewControl.Table)] + public string Name { get; set; } + + [Ps1Xml(Label = "Address Prefxes", Target = ViewControl.Table)] + public List AddressPrefixes { get; set; } + + [Ps1Xml(Label = "Next Hop IpAddress", Target = ViewControl.Table)] + public string NextHopIpAddress { get; set; } + } +} diff --git a/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs b/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs new file mode 100644 index 000000000000..98ef43353ce2 --- /dev/null +++ b/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network.Models +{ + using System; + using System.Collections.Generic; + using System.Text; + using Microsoft.WindowsAzure.Commands.Common.Attributes; + + public class PSVHubRouteTable : PSChildResource + { + [Ps1Xml(Label = "Routes", Target = ViewControl.Table)] + public List Routes { get; set; } + + [Ps1Xml(Label = "Labels", Target = ViewControl.Table)] + public List Labels { get; set; } + + [Ps1Xml(Label = "Associated Connections", Target = ViewControl.Table)] + public List AssociatedConnections { get; set; } + + [Ps1Xml(Label = "Propagating Connections", Target = ViewControl.Table)] + public List PropagatingConnections { get; set; } + + [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] + public string ProvisioningState { get; set; } + } + + public class PSVHubRoute + { + [Ps1Xml(Label = "Name", Target = ViewControl.Table)] + public string Name { get; set; } + + [Ps1Xml(Label = "Destination Type", Target = ViewControl.Table)] + public string DestinationType { get; set; } + + [Ps1Xml(Label = "Destinations", Target = ViewControl.Table)] + public List Destinations { get; set; } + + [Ps1Xml(Label = "Next Hop Type", Target = ViewControl.Table)] + public string NextHopType { get; set; } + + [Ps1Xml(Label = "Next Hop", Target = ViewControl.Table)] + public string NextHop { get; set; } + } +} diff --git a/src/Network/Network/Models/Cortex/PSVpnConnection.cs b/src/Network/Network/Models/Cortex/PSVpnConnection.cs index 4d1b966552bc..2214d7f82f0f 100644 --- a/src/Network/Network/Models/Cortex/PSVpnConnection.cs +++ b/src/Network/Network/Models/Cortex/PSVpnConnection.cs @@ -58,5 +58,8 @@ public class PSVpnConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } + + [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] + public PSRoutingConfiguration RoutingConfiguration { get; set; } } } From 156bd242743d62ff122a8098c54b0d44b36363a6 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Wed, 10 Jun 2020 00:53:54 -0700 Subject: [PATCH 02/15] added all rtv3 related cmdlets --- .../Network/Cortex/CortexParameterSetNames.cs | 4 + .../GetAzureRmVHubRouteTableCommand.cs | 98 +++++++++++ .../NewAzureRmVHubRouteCommand.cs | 67 ++++++++ .../NewAzureRmVHubRouteTableCommand.cs | 123 +++++++++++++ .../RemoveAzureRmVHubRouteTableCommand.cs | 151 ++++++++++++++++ .../UpdateAzureRmVHubRouteTableCommand.cs | 161 ++++++++++++++++++ .../VHubRouteTableBaseCmdlet.cs | 87 ++++++++++ .../Network/Properties/Resources.Designer.cs | 18 ++ src/Network/Network/Properties/Resources.resx | 6 + 9 files changed, 715 insertions(+) create mode 100644 src/Network/Network/Cortex/VHubRouteTable/GetAzureRmVHubRouteTableCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs diff --git a/src/Network/Network/Cortex/CortexParameterSetNames.cs b/src/Network/Network/Cortex/CortexParameterSetNames.cs index 0daf953dcbc9..f3129caf4509 100644 --- a/src/Network/Network/Cortex/CortexParameterSetNames.cs +++ b/src/Network/Network/Cortex/CortexParameterSetNames.cs @@ -72,5 +72,9 @@ internal static class CortexParameterSetNames internal const string ByVirtualHubRouteTableObject = "ByVirtualHubRouteTableObject"; internal const string ByVirtualHubRouteTableResourceId = "ByVirtualHubRouteTableResourceId"; internal const string ByVirtualHubRouteTableName = "ByVirtualHubRouteTableName"; + + internal const string ByVHubRouteTableObject = "ByVHubRouteTableObject"; + internal const string ByVHubRouteTableResourceId = "ByVHubRouteTableResourceId"; + internal const string ByVHubRouteTableName = "ByVHubRouteTableName"; } } \ No newline at end of file diff --git a/src/Network/Network/Cortex/VHubRouteTable/GetAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/GetAzureRmVHubRouteTableCommand.cs new file mode 100644 index 000000000000..b1b7ccf2e2c9 --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/GetAzureRmVHubRouteTableCommand.cs @@ -0,0 +1,98 @@ + +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet(VerbsCommon.Get, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VHubRouteTable", + DefaultParameterSetName = CortexParameterSetNames.ByVirtualHubName), + OutputType(typeof(PSVHubRouteTable))] + public class GetAzureRmVHubRouteTableCommand : VHubRouteTableBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName", "ParentResourceName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The parent resource name.")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs", "ResourceGroupName")] + public string HubName { get; set; } + + [Alias("ParentObject", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent resource.")] + public PSVirtualHub VirtualHub { get; set; } + + [Alias("VirtualHubId", "ParentVirtualHubId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubResourceId, + HelpMessage = "The parent resource id.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs")] + public string ParentResourceId { get; set; } + + [Alias("ResourceName", "VirtualHubRouteTableName")] + [Parameter( + Mandatory = false, + HelpMessage = "The resource name.")] + [ResourceNameCompleter("Microsoft.Network/virtualHubs/hubRouteTables", "ResourceGroupName", "ParentResourceName")] + [ValidateNotNullOrEmpty] + [SupportsWildcards] + public string Name { get; set; } + + public override void Execute() + { + base.Execute(); + + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + this.HubName = this.VirtualHub.Name; + this.ResourceGroupName = this.VirtualHub.ResourceGroupName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ParentResourceId); + this.HubName = parsedResourceId.ResourceName; + ResourceGroupName = parsedResourceId.ResourceGroupName; + } + + if (ShouldGetByName(ResourceGroupName, Name)) + { + WriteObject(GetVHubRouteTable(this.ResourceGroupName, this.HubName, this.Name)); + } + else + { + WriteObject(SubResourceWildcardFilter(Name, this.ListVHubRouteTables(this.ResourceGroupName, this.HubName)), true); + } + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs new file mode 100644 index 000000000000..559702c4c264 --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs @@ -0,0 +1,67 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VHubRoute", + SupportsShouldProcess = false), + OutputType(typeof(PSVHubRoute))] + public class NewAzureRmVHubRouteCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "List of Destinations.")] + [ValidateNotNullOrEmpty] + public string[] Destination { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Type of Destinations.")] + [ValidateNotNullOrEmpty] + public string DestinationType { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "Next hop.")] + [ValidateNotNullOrEmpty] + public string NextHop { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The Next Hop type.")] + [ValidateNotNullOrEmpty] + public string NextHopType { get; set; } + + public override void Execute() + { + base.Execute(); + + var vHubRoute = new PSVHubRoute + { + Destinations = this.Destination?.ToList(), + DestinationType = this.DestinationType, + NextHop = this.NextHop, + NextHopType = this.NextHopType + }; + + WriteObject(vHubRoute); + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs new file mode 100644 index 000000000000..af69cf8472af --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs @@ -0,0 +1,123 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet(VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VHubRouteTable", + DefaultParameterSetName = CortexParameterSetNames.ByVirtualHubName, + SupportsShouldProcess = true), + OutputType(typeof(PSVHubRouteTable))] + public class NewAzureRmVHubRouteTableCommand : VHubRouteTableBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent resource.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("VirtualHubId", "ParentVirtualHubId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubResourceId, + HelpMessage = "The parent resource.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs")] + public string ParentResourceId { get; set; } + + [Alias("ResourceName", "VHubRouteTableName", "RouteTableName")] + [Parameter( + Mandatory = true, + HelpMessage = "Name of the route table.")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The list of routes for this route table resource.")] + public PSVHubRoute[] Route { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "List of labels for this route table resource.")] + public string[] Label { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + + if (ParameterSetName.Contains(CortexParameterSetNames.ByVirtualHubObject)) + { + this.ResourceGroupName = this.ParentObject.ResourceGroupName; + this.ParentResourceName = this.ParentObject.Name; + } + else if (ParameterSetName.Contains(CortexParameterSetNames.ByVirtualHubResourceId)) + { + var parsedResourceId = new ResourceIdentifier(this.ParentResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ResourceName; + } + + if (this.IsVHubRouteTablePresent(this.ResourceGroupName, this.ParentResourceName, this.Name)) + { + throw new PSArgumentException(string.Format(Properties.Resources.ChildResourceAlreadyPresentInResourceGroup, this.Name, this.ResourceGroupName, this.ParentResourceName)); + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + PSVHubRouteTable hubRouteTable = new PSVHubRouteTable(); + hubRouteTable.Name = this.Name; + hubRouteTable.Routes = this.Route.ToList(); + hubRouteTable.Labels = this.Label.ToList(); + + ConfirmAction( + Properties.Resources.CreatingResourceMessage, + this.Name, + () => + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + WriteObject(this.CreateOrUpdateVHubRouteTable(this.ResourceGroupName, this.ParentResourceName, this.Name, hubRouteTable)); + }); + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs new file mode 100644 index 000000000000..09230f22f24f --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs @@ -0,0 +1,151 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + using Microsoft.Azure.Management.Network; + + [Cmdlet(VerbsCommon.Remove, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VHubRouteTable", + DefaultParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + SupportsShouldProcess = true), + OutputType(typeof(bool))] + public class RemoveAzureRmVHubRouteTableCommand : VHubRouteTableBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "VHubRouteTableName", "RouteTableName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "Name of the route table.")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "Name of the route table.")] + public string Name { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent virtual hub object.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("VHubRouteTable", "RouteTable")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableObject, + HelpMessage = "The route table resource to modify.")] + public PSVHubRouteTable InputObject { get; set; } + + [Alias("VHubRouteTableId", "RouteTableId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableResourceId, + HelpMessage = "The resource id route table to modify.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs/hubRouteTables")] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Do not ask for confirmation if you want to delete a resource")] + public SwitchParameter Force { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Returns an object representing the item on which this operation is being performed.")] + public SwitchParameter PassThru { get; set; } + + public override void Execute() + { + base.Execute(); + PSVHubRouteTable hubRouteTableToDelete = null; + if (ParameterSetName.Contains(CortexParameterSetNames.ByVHubRouteTableObject)) + { + hubRouteTableToDelete = this.InputObject; + this.ResourceId = this.InputObject.Id; + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVHubRouteTableResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + var parentResourceId = this.ParentObject.Id; + var parsedParentResourceId = new ResourceIdentifier(parentResourceId); + this.ResourceGroupName = parsedParentResourceId.ResourceGroupName; + this.ParentResourceName = parsedParentResourceId.ResourceName; + } + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + ConfirmAction( + Force.IsPresent, + string.Format(Properties.Resources.RemoveVHubRouteTableWarning), + Properties.Resources.RemoveResourceMessage, + this.Name, + () => + { + VHubRouteTableClient.Delete(this.ResourceGroupName, this.ParentResourceName, this.Name); + if (PassThru) + { + WriteObject(true); + } + }); + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs new file mode 100644 index 000000000000..3d1e981825f3 --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs @@ -0,0 +1,161 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet("Update", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VHubRouteTable", + DefaultParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + SupportsShouldProcess = true), + OutputType(typeof(PSVHubRouteTable))] + public class UpdateAzureRmVHubRouteTableCommand : VHubRouteTableBaseCmdlet + { + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "The resource group name.")] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Alias("VirtualHubName", "ParentVirtualHubName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "The resource group name.")] + public string ParentResourceName { get; set; } + + [Alias("ResourceName", "VHubRouteTableName", "RouteTableName")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableName, + HelpMessage = "Name of the route table.")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "Name of the route table.")] + public string Name { get; set; } + + [Alias("VirtualHub", "ParentVirtualHub")] + [Parameter( + Mandatory = true, + ParameterSetName = CortexParameterSetNames.ByVirtualHubObject, + HelpMessage = "The parent virtual hub object.")] + public PSVirtualHub ParentObject { get; set; } + + [Alias("VHubRouteTable", "RouteTable")] + [Parameter( + Mandatory = true, + ValueFromPipeline = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableObject, + HelpMessage = "The route table resource to modify.")] + public PSVHubRouteTable InputObject { get; set; } + + [Alias("VHubRouteTableId", "RouteTableId")] + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + ParameterSetName = CortexParameterSetNames.ByVHubRouteTableResourceId, + HelpMessage = "The resource id route table to modify.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs/hubRouteTables")] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "The list of routes for this route table resource.")] + public PSVHubRoute[] Route { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "List of labels for this route table resource.")] + public string[] Label { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Run cmdlet in the background")] + public SwitchParameter AsJob { get; set; } + + public override void Execute() + { + base.Execute(); + PSVHubRouteTable hubRouteTableToUpdate = null; + if (ParameterSetName.Contains(CortexParameterSetNames.ByVHubRouteTableObject)) + { + hubRouteTableToUpdate = this.InputObject; + this.ResourceId = this.InputObject.Id; + if (string.IsNullOrWhiteSpace(this.ResourceId)) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else + { + if (ParameterSetName.Equals(CortexParameterSetNames.ByVHubRouteTableResourceId, StringComparison.OrdinalIgnoreCase)) + { + var parsedResourceId = new ResourceIdentifier(this.ResourceId); + this.ResourceGroupName = parsedResourceId.ResourceGroupName; + this.ParentResourceName = parsedResourceId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); + this.Name = parsedResourceId.ResourceName; + } + else if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) + { + var parentResourceId = this.ParentObject.Id; + var parsedParentResourceId = new ResourceIdentifier(parentResourceId); + this.ResourceGroupName = parsedParentResourceId.ResourceGroupName; + this.ParentResourceName = parsedParentResourceId.ResourceName; + } + + hubRouteTableToUpdate = this.GetVHubRouteTable(this.ResourceGroupName, this.ParentResourceName, this.Name); + if (hubRouteTableToUpdate == null) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + } + + // this will thorw if hub does not exist. + IsParentVirtualHubPresent(this.ResourceGroupName, this.ParentResourceName); + + if (this.Route != null) + { + hubRouteTableToUpdate.Routes = this.Route.ToList(); + } + + if (this.Label != null) + { + hubRouteTableToUpdate.Labels = this.Label.ToList(); + } + + ConfirmAction( + Properties.Resources.SettingResourceMessage, + this.Name, + () => + { + WriteVerbose(String.Format(Properties.Resources.CreatingLongRunningOperationMessage, this.ResourceGroupName, this.Name)); + WriteObject(this.CreateOrUpdateVHubRouteTable(this.ResourceGroupName, this.ParentResourceName, this.Name, hubRouteTableToUpdate)); + }); + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs new file mode 100644 index 000000000000..bbdd221e90de --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs @@ -0,0 +1,87 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using AutoMapper; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Management.Network; + using System.Collections.Generic; + using System.Management.Automation; + using MNM = Microsoft.Azure.Management.Network.Models; + + public class VHubRouteTableBaseCmdlet : NetworkBaseCmdlet + { + public IHubRouteTablesOperations VHubRouteTableClient + { + get + { + return NetworkClient.NetworkManagementClient.HubRouteTables; + } + } + + public PSVHubRouteTable ToPsVHubRouteTable(MNM.HubRouteTable routeTable) + { + var psVHubRouteTable = NetworkResourceManagerProfile.Mapper.Map(routeTable); + + return psVHubRouteTable; + } + + public PSVHubRouteTable GetVHubRouteTable(string resourceGroupName, string virtualHubName, string name) + { + var routeTable = VHubRouteTableClient.Get(resourceGroupName, virtualHubName, name); + var psVHubRouteTable = ToPsVHubRouteTable(routeTable); + + return psVHubRouteTable; + } + + public List ListVHubRouteTables(string resourceGroupName, string virtualHubName) + { + var routeTables = VHubRouteTableClient.List(resourceGroupName, virtualHubName); + + List routeTablesToReturn = new List(); + if (routeTables != null) + { + foreach (MNM.HubRouteTable routeTable in routeTables) + { + routeTablesToReturn.Add(ToPsVHubRouteTable(routeTable)); + } + } + + return routeTablesToReturn; + } + + public PSVHubRouteTable CreateOrUpdateVHubRouteTable(string resourceGroupName, string virtualHubName, string routeTableName, PSVHubRouteTable hubRouteTable) + { + var hubRouteTableModel = NetworkResourceManagerProfile.Mapper.Map(hubRouteTable); + var routeTableCreated = VHubRouteTableClient.CreateOrUpdate(resourceGroupName, virtualHubName, routeTableName, hubRouteTableModel); + return ToPsVHubRouteTable(routeTableCreated); + } + + public bool IsVHubRouteTablePresent(string resourceGroupName, string parentHubName, string name) + { + return IsResourcePresent(() => { GetVHubRouteTable(resourceGroupName, parentHubName, name); }); + } + + public void IsParentVirtualHubPresent(string resourceGroupName, string parentHubName) + { + // Get the virtual hub - this will throw not found if the resource does not exist + PSVirtualHub resolvedVirtualHub = new VirtualHubBaseCmdlet().GetVirtualHub(resourceGroupName, parentHubName); + if (resolvedVirtualHub == null) + { + throw new PSArgumentException(Properties.Resources.ParentVirtualHubNotFound); + } + } + } +} \ No newline at end of file diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs index 7c8fae82ee1a..e40af6ba60ab 100644 --- a/src/Network/Network/Properties/Resources.Designer.cs +++ b/src/Network/Network/Properties/Resources.Designer.cs @@ -1095,6 +1095,15 @@ internal static string RemoveResourceMessage { } } + /// + /// Looks up a localized string similar to Removing this HubRouteTable will remove all routes present in this and may affect the routing in your VirtualHub.. + /// + internal static string RemoveVHubRouteTableWarning { + get { + return ResourceManager.GetString("RemoveVHubRouteTableWarning", resourceCulture); + } + } + /// /// Looks up a localized string similar to Removing a VirtualRouter will also remove all peerings associated with it. Are you sure you want to remove resource '{0}'. /// @@ -1491,6 +1500,15 @@ internal static string UpdatingLongRunningOperationMessage { } } + /// + /// Looks up a localized string similar to The HubRouteTable could not be found.. + /// + internal static string VHubRouteTableNotFound { + get { + return ResourceManager.GetString("VHubRouteTableNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to A valid VirtualNetworkGateway is required to create Virtual Router. /// diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx index ab8e26c73e1e..0e5229796881 100644 --- a/src/Network/Network/Properties/Resources.resx +++ b/src/Network/Network/Properties/Resources.resx @@ -680,4 +680,10 @@ ipConfigurations + + Removing this HubRouteTable will remove all routes present in this and may affect the routing in your VirtualHub. + + + The HubRouteTable could not be found. + \ No newline at end of file From 059a3405d3c14ef5a23a9d1ffee0d72b5f9a72c1 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Wed, 10 Jun 2020 18:19:32 -0700 Subject: [PATCH 03/15] update cmdlets for RoutingConfiguration --- ...NewAzureRmExpressRouteConnectionCommand.cs | 10 ++++++++ ...SetAzureRmExpressRouteConnectionCommand.cs | 10 ++++++++ ...ureRmHubVirtualNetworkConnectionCommand.cs | 10 ++++++++ ...ureRmHubVirtualNetworkConnectionCommand.cs | 10 ++++++++ .../NewAzureRmP2sVpnGatewayCommand.cs | 11 ++++++++ .../UpdateAzureRmP2SVpnGatewayCommand.cs | 25 +++++++++++++++++++ .../NewAzureRmVHubRouteTableCommand.cs | 2 +- .../RemoveAzureRmVHubRouteTableCommand.cs | 2 +- .../UpdateAzureRmVHubRouteTableCommand.cs | 2 +- .../NewAzureRmVpnConnectionCommand.cs | 10 ++++++++ .../UpdateAzureRmVpnConnectionCommand.cs | 10 ++++++++ 11 files changed, 99 insertions(+), 3 deletions(-) diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs index af0cf2df93a6..c8ba88a1ef0e 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs @@ -91,6 +91,11 @@ public class NewAzureRmExpressRouteConnectionCommand : ExpressRouteConnectionBas HelpMessage = "Enable internet security for this ExpressRoute Gateway connection")] public SwitchParameter EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this ExpressRoute Gateway connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -148,6 +153,11 @@ private PSExpressRouteConnection CreateExpressRouteConnection() EnableInternetSecurity = this.EnableInternetSecurity.IsPresent }; + if (this.RoutingConfiguration != null) + { + expressRouteConnection.RoutingConfiguration = RoutingConfiguration; + } + // Set the auth key, if specified if (!string.IsNullOrWhiteSpace(this.AuthorizationKey)) { diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs index b5871aaac4f3..8e8fbcc6593d 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs @@ -91,6 +91,11 @@ public class UpdateAzureRmExpressRouteConnectionCommand : ExpressRouteConnection HelpMessage = "Enable internet security for this connection")] public bool? EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this ExpressRoute Gateway connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -150,6 +155,11 @@ public override void Execute() expressRouteConnectionToModify.EnableInternetSecurity = this.EnableInternetSecurity.Value; } + if (this.RoutingConfiguration != null) + { + expressRouteConnectionToModify.RoutingConfiguration = RoutingConfiguration; + } + // TODO: drop this hack after ER Gateways backend updated with all the functionality exposed if (expressRouteGateway.AutoScaleConfiguration.Bounds.Max < expressRouteGateway.AutoScaleConfiguration.Bounds.Min) { diff --git a/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs b/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs index 1c45c3d62ddb..6a78c5789a4e 100644 --- a/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs +++ b/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs @@ -129,6 +129,11 @@ public class NewHubVirtualNetworkConnectionCommand : HubVnetConnectionBaseCmdlet HelpMessage = "Enable internet security for this connection")] public SwitchParameter EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this HubVirtualnNetwork connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -183,6 +188,11 @@ public override void Execute() parentVirtualHub.VirtualNetworkConnections = new List(); } + if (this.RoutingConfiguration != null) + { + hubVnetConnection.RoutingConfiguration = RoutingConfiguration; + } + List resourceIds = new List(); resourceIds.Add(hubVnetConnection.RemoteVirtualNetwork.Id); var auxHeaderDictionary = GetAuxilaryAuthHeaderFromResourceIds(resourceIds); diff --git a/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs b/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs index 8d4999c8ecda..2c1cc7e75a57 100644 --- a/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs +++ b/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs @@ -81,6 +81,11 @@ public class UpdateAzureRmHubVirtualNetworkConnectionCommand : HubVnetConnection HelpMessage = "Enable internet security for this connection.")] public bool? EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this HubVirtualNetwork connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -128,6 +133,11 @@ public override void Execute() connectionToModify.EnableInternetSecurity = this.EnableInternetSecurity.Value; } + if (this.RoutingConfiguration != null) + { + connectionToModify.RoutingConfiguration = RoutingConfiguration; + } + List resourceIds = new List(); resourceIds.Add(connectionToModify.RemoteVirtualNetwork.Id); var auxHeaderDictionary = GetAuxilaryAuthHeaderFromResourceIds(resourceIds); diff --git a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs index 1ccb908baf37..b6d3c597ee99 100644 --- a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs +++ b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs @@ -137,6 +137,11 @@ public class NewAzureRmP2SVpnGatewayCommand : P2SVpnGatewayBaseCmdlet HelpMessage = "The list of Custom Dns Servers.")] public string[] CustomDnsServer { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this P2SVpnGateway P2SConnectionConfiguration")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags.")] @@ -200,6 +205,12 @@ public override void Execute() AddressPrefixes = new List(this.VpnClientAddressPool) } }; + + if (this.RoutingConfiguration != null) + { + p2sConnectionConfig.RoutingConfiguration = RoutingConfiguration; + } + p2sVpnGateway.P2SConnectionConfigurations = new List() { p2sConnectionConfig diff --git a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs index b303dd31bbd8..8d0f499c0ba0 100644 --- a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs +++ b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs @@ -158,6 +158,11 @@ public class UpdateAzureRmP2SVpnGatewayCommand : P2SVpnGatewayBaseCmdlet HelpMessage = "The list of Custom Dns Servers.")] public string[] CustomDnsServer { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this P2SVpnGateway P2SConnectionConfiguration")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "A hashtable which represents resource tags.")] @@ -225,6 +230,26 @@ public override void Execute() } } + if (this.RoutingConfiguration != null) + { + if (existingP2SVpnGateway.P2SConnectionConfigurations != null && existingP2SVpnGateway.P2SConnectionConfigurations.Any()) + { + existingP2SVpnGateway.P2SConnectionConfigurations[0].RoutingConfiguration = RoutingConfiguration; + } + else + { + PSP2SConnectionConfiguration p2sConnectionConfig = new PSP2SConnectionConfiguration() + { + Name = P2SConnectionConfigurationName, + RoutingConfiguration = RoutingConfiguration + }; + existingP2SVpnGateway.P2SConnectionConfigurations = new List() + { + p2sConnectionConfig + }; + } + } + // Set the custom dns servers, if it is specified by customer. if (CustomDnsServer != null && this.CustomDnsServer.Any()) { diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs index af69cf8472af..e3f1bce1afee 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteTableCommand.cs @@ -85,7 +85,7 @@ public override void Execute() { base.Execute(); - if (ParameterSetName.Contains(CortexParameterSetNames.ByVirtualHubObject)) + if (ParameterSetName.Equals(CortexParameterSetNames.ByVirtualHubObject, StringComparison.OrdinalIgnoreCase)) { this.ResourceGroupName = this.ParentObject.ResourceGroupName; this.ParentResourceName = this.ParentObject.Name; diff --git a/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs index 09230f22f24f..b4daf72311c4 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/RemoveAzureRmVHubRouteTableCommand.cs @@ -98,7 +98,7 @@ public override void Execute() { base.Execute(); PSVHubRouteTable hubRouteTableToDelete = null; - if (ParameterSetName.Contains(CortexParameterSetNames.ByVHubRouteTableObject)) + if (ParameterSetName.Equals(CortexParameterSetNames.ByVHubRouteTableObject, StringComparison.OrdinalIgnoreCase)) { hubRouteTableToDelete = this.InputObject; this.ResourceId = this.InputObject.Id; diff --git a/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs index 3d1e981825f3..fca301393f08 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs @@ -97,7 +97,7 @@ public override void Execute() { base.Execute(); PSVHubRouteTable hubRouteTableToUpdate = null; - if (ParameterSetName.Contains(CortexParameterSetNames.ByVHubRouteTableObject)) + if (ParameterSetName.Equals(CortexParameterSetNames.ByVHubRouteTableObject, StringComparison.OrdinalIgnoreCase)) { hubRouteTableToUpdate = this.InputObject; this.ResourceId = this.InputObject.Id; diff --git a/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs b/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs index 60fe9e00dcbe..8d1a90cd0a47 100644 --- a/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs +++ b/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs @@ -178,6 +178,11 @@ public class NewAzureRmVpnConnectionCommand : VpnConnectionBaseCmdlet HelpMessage = "Enable internet security for this connection")] public SwitchParameter EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this vpn connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -240,6 +245,11 @@ private PSVpnConnection CreateVpnConnection() EnableInternetSecurity = this.EnableInternetSecurity.IsPresent }; + if (this.RoutingConfiguration != null) + { + vpnConnection.RoutingConfiguration = RoutingConfiguration; + } + //// Resolve the VpnSite reference //// And set it in the VpnConnection object. string vpnSiteResolvedId = null; diff --git a/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs b/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs index 50b38ad377d7..a6f4f0b8430c 100644 --- a/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs +++ b/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs @@ -119,6 +119,11 @@ public class UpdateAzureRmVpnConnectionCommand : VpnConnectionBaseCmdlet HelpMessage = "Enable internet security for this connection")] public bool? EnableInternetSecurity { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "The routing configuration for this vpn connection")] + public PSRoutingConfiguration RoutingConfiguration { get; set; } + [Parameter( Mandatory = false, HelpMessage = "Run cmdlet in the background")] @@ -216,6 +221,11 @@ public override void Execute() vpnConnectionToModify.EnableInternetSecurity = this.EnableInternetSecurity.Value; } + if (this.RoutingConfiguration != null) + { + vpnConnectionToModify.RoutingConfiguration = RoutingConfiguration; + } + ConfirmAction( Properties.Resources.SettingResourceMessage, this.Name, From 77ab4642667cf37320b438e4d337730b84cd3613 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Wed, 10 Jun 2020 20:54:26 -0700 Subject: [PATCH 04/15] update help files --- src/Network/Network/Az.Network.psd1 | 5 +- src/Network/Network/ChangeLog.md | 15 ++ .../help/New-AzExpressRouteConnection.md | 24 +- .../Network/help/New-AzP2sVpnGateway.md | 28 +- src/Network/Network/help/New-AzVHubRoute.md | 144 ++++++++++ .../Network/help/New-AzVHubRouteTable.md | 235 ++++++++++++++++ .../help/New-AzVirtualHubVnetConnection.md | 27 +- .../Network/help/New-AzVpnConnection.md | 27 +- .../Network/help/Remove-AzVHubRouteTable.md | 255 ++++++++++++++++++ .../help/Set-AzExpressRouteConnection.md | 21 +- .../Network/help/Update-AzP2sVpnGateway.md | 51 ++-- .../Network/help/Update-AzVHubRouteTable.md | 255 ++++++++++++++++++ .../help/Update-AzVirtualHubVnetConnection.md | 21 +- .../Network/help/Update-AzVpnConnection.md | 21 +- 14 files changed, 1067 insertions(+), 62 deletions(-) create mode 100644 src/Network/Network/help/New-AzVHubRoute.md create mode 100644 src/Network/Network/help/New-AzVHubRouteTable.md create mode 100644 src/Network/Network/help/Remove-AzVHubRouteTable.md create mode 100644 src/Network/Network/help/Update-AzVHubRouteTable.md diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 174b4a454271..9a6d882019dc 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -490,7 +490,10 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Set-AzIpAllocation', 'New-AzSecurityPartnerProvider', 'Remove-AzSecurityPartnerProvider', 'Get-AzSecurityPartnerProvider', 'Set-AzSecurityPartnerProvider', - 'Reset-AzHubRouter' + 'Reset-AzHubRouter', + 'New-AzVHubRoute', + 'New-AzVHubRouteTable', 'Get-AzVHubRouteTable', + 'Update-AzVHubRouteTable', 'Remove-AzVHubRouteTable' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Network/Network/ChangeLog.md b/src/Network/Network/ChangeLog.md index b9a9819a4d60..b8cea6339100 100644 --- a/src/Network/Network/ChangeLog.md +++ b/src/Network/Network/ChangeLog.md @@ -51,6 +51,21 @@ - `Set-AzApplicationGatewayPrivateLinkConfiguration` - `Remove-AzApplicationGatewayPrivateLinkConfiguration` - `New-AzApplicationGatewayPrivateLinkIpConfiguration` +* Added new cmdlets for HubRouteTables child resource of VirtualHub. + -`New-AzVHubRoute` + -`New-AzVHubRouteTable` + -`Get-AzVHubRouteTable` + -`Update-AzVHubRouteTable` + -`Remove-AzVHubRouteTable` +* Updated existing cmdlets to support optional RoutingConfiguration input parameter for custom routing in VirtualWan. + -`New-AzExpressRouteConnection` + -`Set-AzExpressRouteConnection` + -`New-AzVirtualHubVnetConnection` + -`Update-AzVirtualHubVnetConnection` + -`New-AzVpnConnection` + -`Update-AzVpnConnection` + -`New-AzP2sVpnGateway` + -`Update-AzP2sVpnGateway` ## Version 3.0.0 * Added breaking change attribute to notify that Zone default behaviour will be changed diff --git a/src/Network/Network/help/New-AzExpressRouteConnection.md b/src/Network/Network/help/New-AzExpressRouteConnection.md index ac92206b8e42..1f305c30bc61 100644 --- a/src/Network/Network/help/New-AzExpressRouteConnection.md +++ b/src/Network/Network/help/New-AzExpressRouteConnection.md @@ -16,23 +16,20 @@ Creates an ExpressRoute connection that connects an ExpressRoute gateway to an o ``` New-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteGatewayObject ``` New-AzExpressRouteConnection -ExpressRouteGatewayObject -Name -ExpressRouteCircuitPeeringId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteGatewayResourceId ``` New-AzExpressRouteConnection -ParentResourceId -Name -ExpressRouteCircuitPeeringId - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -217,6 +214,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RoutingWeight The weight for packet routing that needs to be assigned to this connection. diff --git a/src/Network/Network/help/New-AzP2sVpnGateway.md b/src/Network/Network/help/New-AzP2sVpnGateway.md index d726311066f3..65a2107eae53 100644 --- a/src/Network/Network/help/New-AzP2sVpnGateway.md +++ b/src/Network/Network/help/New-AzP2sVpnGateway.md @@ -15,8 +15,7 @@ Create a new P2SVpnGateway under VirtualHub for point to site connectivity. ### ByVirtualHubNameByVpnServerConfigurationObject (Default) ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit - -VirtualHubName [-VpnServerConfiguration ] -VpnClientAddressPool - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] + -VirtualHubName [-VpnServerConfiguration ] -VpnClientAddressPool [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -24,7 +23,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit -VirtualHubName -VpnServerConfigurationId -VpnClientAddressPool - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -32,7 +31,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit -VirtualHub [-VpnServerConfiguration ] - -VpnClientAddressPool [-CustomDnsServer ] [-Tag ] [-AsJob] + -VpnClientAddressPool [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -40,7 +39,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit -VirtualHub -VpnServerConfigurationId -VpnClientAddressPool - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -48,7 +47,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit -VirtualHubId [-VpnServerConfiguration ] -VpnClientAddressPool - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -56,7 +55,7 @@ New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleU ``` New-AzP2sVpnGateway -ResourceGroupName -Name -VpnGatewayScaleUnit -VirtualHubId -VpnServerConfigurationId -VpnClientAddressPool - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] + [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -180,6 +179,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag A hashtable which represents resource tags. diff --git a/src/Network/Network/help/New-AzVHubRoute.md b/src/Network/Network/help/New-AzVHubRoute.md new file mode 100644 index 000000000000..ab09eac2dbc8 --- /dev/null +++ b/src/Network/Network/help/New-AzVHubRoute.md @@ -0,0 +1,144 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azvhubroute +schema: 2.0.0 +--- + +# New-AzVHubRoute + +## SYNOPSIS +Creates a VHubRoute object which can be passed as parameter to the New-AzVHubRouteTable command. + +## SYNTAX + +``` +New-AzVHubRoute -Name -Destination -DestinationType -NextHop -NextHopType [-DefaultProfile ] [] +``` + +## DESCRIPTION +Creates a VHubRoute object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +The above command will create a VHubRoute object which can then be added to a VHubRouteTable resource. + +## PARAMETERS + +### -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 +``` + +### -Destination +List of Destinations. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationType +Type of Destinations. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The route name. + +```yaml +Type: String +Parameter Sets: (all) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NextHop +The next hop. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NextHopType +The Next Hop type. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVHubRoute + +## NOTES + +## RELATED LINKS + +[Get-AzVHubRouteTable](./Get-AzVHubRouteTable.md) + +[New-AzVHubRouteTable](./New-AzVHubRouteTable.md) + +[Remove-AzVHubRouteTable](./Remove-AzVHubRouteTable.md) + +[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzVHubRouteTable.md b/src/Network/Network/help/New-AzVHubRouteTable.md new file mode 100644 index 000000000000..c03ee8b865be --- /dev/null +++ b/src/Network/Network/help/New-AzVHubRouteTable.md @@ -0,0 +1,235 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azvhubroutetable +schema: 2.0.0 +--- + +# New-AzVHubRouteTable + +## SYNOPSIS +Creates a hub route table resource associated with a VirtualHub. + +## SYNTAX + +### ByVirtualHubName (Default) +``` +New-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +New-AzVHubRouteTable -Name -ParentObject -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubResourceId +``` +New-AzVHubRouteTable -ParentResourceId -Name -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Creates the specified route table that is associated with the specified virtual hub with the provided routes and the labels. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +This command creates a hub route table of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Label +The list of labels. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: ResourceName, VHubRouteTableName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByVirtualHubName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByVirtualHubName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentResourceId +The resource id of the virtual hub resource. + +```yaml +Type: String +Parameter Sets: ByVirtualHubResourceId +Aliases: VirtualHubId, ParentVirtualHubId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Route +The list of routes for this route table. + +```yaml +Type: PSVHubRoute[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +## NOTES + +## RELATED LINKS + +[Get-AzVHubRouteTable](./Get-AzVHubRouteTable.md) + +[New-AzVHubRoute](./New-AzVHubRoute.md) + +[Remove-AzVHubRouteTable](./Remove-AzVHubRouteTable.md) + +[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzVirtualHubVnetConnection.md b/src/Network/Network/help/New-AzVirtualHubVnetConnection.md index af47e63c0003..861cb5e2e94e 100644 --- a/src/Network/Network/help/New-AzVirtualHubVnetConnection.md +++ b/src/Network/Network/help/New-AzVirtualHubVnetConnection.md @@ -15,42 +15,42 @@ The New-AzVirtualHubVnetConnection cmdlet creates a HubVirtualNetworkConnection ### ByVirtualHubNameByRemoteVirtualNetworkObject (Default) ``` New-AzVirtualHubVnetConnection -ResourceGroupName -ParentResourceName -Name - -RemoteVirtualNetwork [-EnableInternetSecurity] [-AsJob] + -RemoteVirtualNetwork [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubNameByRemoteVirtualNetworkResourceId ``` New-AzVirtualHubVnetConnection -ResourceGroupName -ParentResourceName -Name - -RemoteVirtualNetworkId [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] + -RemoteVirtualNetworkId [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObjectByRemoteVirtualNetworkObject ``` New-AzVirtualHubVnetConnection -ParentObject -Name - -RemoteVirtualNetwork [-EnableInternetSecurity] [-AsJob] + -RemoteVirtualNetwork [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObjectByRemoteVirtualNetworkResourceId ``` New-AzVirtualHubVnetConnection -ParentObject -Name -RemoteVirtualNetworkId - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubResourceIdByRemoteVirtualNetworkObject ``` New-AzVirtualHubVnetConnection -ParentResourceId -Name - -RemoteVirtualNetwork [-EnableInternetSecurity] [-AsJob] + -RemoteVirtualNetwork [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubResourceIdByRemoteVirtualNetworkResourceId ``` New-AzVirtualHubVnetConnection -ParentResourceId -Name -RemoteVirtualNetworkId - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -231,6 +231,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Network/Network/help/New-AzVpnConnection.md b/src/Network/Network/help/New-AzVpnConnection.md index 10bb8413d9c4..a9d240e654a1 100644 --- a/src/Network/Network/help/New-AzVpnConnection.md +++ b/src/Network/Network/help/New-AzVpnConnection.md @@ -18,7 +18,7 @@ New-AzVpnConnection -ResourceGroupName -ParentResourceName -Na -VpnSite [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] [-VpnSiteLinkConnection ] - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -27,7 +27,7 @@ New-AzVpnConnection -ResourceGroupName -ParentResourceName -Na New-AzVpnConnection -ResourceGroupName -ParentResourceName -Name -VpnSiteId [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -36,7 +36,7 @@ New-AzVpnConnection -ResourceGroupName -ParentResourceName -Na New-AzVpnConnection -ParentObject -Name -VpnSite [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -45,7 +45,7 @@ New-AzVpnConnection -ParentObject -Name -VpnSite -Name -VpnSiteId [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -54,7 +54,7 @@ New-AzVpnConnection -ParentObject -Name -VpnSiteId -Name -VpnSite [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -63,7 +63,7 @@ New-AzVpnConnection -ParentResourceId -Name -VpnSite -Name -VpnSiteId [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-VpnConnectionProtocolType ] [-EnableBgp] [-UseLocalAzureIpAddress] [-UsePolicyBasedTrafficSelectors] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -302,6 +302,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SharedKey The shared key required to set this connection up. diff --git a/src/Network/Network/help/Remove-AzVHubRouteTable.md b/src/Network/Network/help/Remove-AzVHubRouteTable.md new file mode 100644 index 000000000000..c98fd11c1a32 --- /dev/null +++ b/src/Network/Network/help/Remove-AzVHubRouteTable.md @@ -0,0 +1,255 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/remove-azvhubroutetable +schema: 2.0.0 +--- + +# Remove-AzVHubRouteTable + +## SYNOPSIS +Delete a hub route table resource associated with a VirtualHub. + +## SYNTAX + +### ByVHubRouteTableName (Default) +``` +Remove-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +Remove-AzVHubRouteTable -Name -VirtualHub [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVHubRouteTableObject +``` +Remove-AzVHubRouteTable [-InputObject ] [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVHubRouteTableResourceId +``` +Remove-AzVHubRouteTable -ResourceId [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Deletes the specified hub route table that is associated with the specified virtual hub. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +This command deletes the hub route table of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Do not ask for confirmation if you want to overwrite a resource + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The vhubroutetable resource to remove. + +```yaml +Type: PSVHubRouteTable +Parameter Sets: ByVHubRouteTableObject +Aliases: VHubRouteTable, RouteTable + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName, ByVirtualHubObject +Aliases: ResourceName, VHubRouteTableName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns an object representing the item on which this operation is being performed. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the vhubroutetable resource to remove. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableResourceId +Aliases: VHubRouteTableId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +### System.String + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + +[Get-AzVHubRouteTable](./Get-AzVHubRouteTable.md) + +[New-AzVHubRoute](./New-AzVHubRoute.md) + +[New-AzVHubRouteTable](./New-AzVHubRouteTable.md) + +[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) \ No newline at end of file diff --git a/src/Network/Network/help/Set-AzExpressRouteConnection.md b/src/Network/Network/help/Set-AzExpressRouteConnection.md index 99e33301db08..c602289bc79f 100644 --- a/src/Network/Network/help/Set-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Set-AzExpressRouteConnection.md @@ -15,20 +15,20 @@ Updates an express route connection created between an express route gateway and ### ByExpressRouteConnectionName (Default) ``` Set-AzExpressRouteConnection -ResourceGroupName -ExpressRouteGatewayName -Name - [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] + [-AuthorizationKey ] [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionResourceId ``` Set-AzExpressRouteConnection -ResourceId [-AuthorizationKey ] [-RoutingWeight ] - [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByExpressRouteConnectionObject ``` Set-AzExpressRouteConnection -InputObject [-AuthorizationKey ] - [-RoutingWeight ] [-EnableInternetSecurity] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-RoutingWeight ] [-EnableInternetSecurity] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -204,6 +204,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -RoutingWeight The weight that needs to be assigned to this connection for packet routing. diff --git a/src/Network/Network/help/Update-AzP2sVpnGateway.md b/src/Network/Network/help/Update-AzP2sVpnGateway.md index 70d717aeb70a..aaeb22048d44 100644 --- a/src/Network/Network/help/Update-AzP2sVpnGateway.md +++ b/src/Network/Network/help/Update-AzP2sVpnGateway.md @@ -14,71 +14,53 @@ Update an existing P2SVpnGateway under VirtualHub for point to site connectivity ### ByP2SVpnGatewayNameNoVpnServerConfigurationUpdate (Default) ``` -Update-AzP2sVpnGateway -ResourceGroupName -Name [-VpnClientAddressPool ] - [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-Tag ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +Update-AzP2sVpnGateway -ResourceGroupName -Name [-VpnClientAddressPool ] [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayNameByVpnServerConfigurationObject ``` -Update-AzP2sVpnGateway -ResourceGroupName -Name [-VpnClientAddressPool ] - [-VpnServerConfiguration ] [-VpnGatewayScaleUnit ] - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzP2sVpnGateway -ResourceGroupName -Name [-VpnClientAddressPool ] [-VpnServerConfiguration ] [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayNameByVpnServerConfigurationResourceId ``` Update-AzP2sVpnGateway -ResourceGroupName -Name [-VpnClientAddressPool ] - -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] - [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayObjectNoVpnServerConfigurationUpdate ``` Update-AzP2sVpnGateway -InputObject [-VpnClientAddressPool ] - [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-Tag ] [-AsJob] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayObjectByVpnServerConfigurationObject ``` Update-AzP2sVpnGateway -InputObject [-VpnClientAddressPool ] [-VpnServerConfiguration ] [-VpnGatewayScaleUnit ] - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayObjectByVpnServerConfigurationResourceId ``` Update-AzP2sVpnGateway -InputObject [-VpnClientAddressPool ] - -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] - [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayResourceIdNoVpnServerConfigurationUpdate ``` -Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] [-VpnGatewayScaleUnit ] - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayResourceIdByVpnServerConfigurationObject ``` -Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] - [-VpnServerConfiguration ] [-VpnGatewayScaleUnit ] - [-CustomDnsServer ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] +Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] [-VpnServerConfiguration ] [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByP2SVpnGatewayResourceIdByVpnServerConfigurationResourceId ``` -Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] - -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] - [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] - [] +Update-AzP2sVpnGateway -ResourceId [-VpnClientAddressPool ] -VpnServerConfigurationId [-VpnGatewayScaleUnit ] [-CustomDnsServer ] [-RoutingConfiguration ] [-Tag ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -231,6 +213,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Tag A hashtable which represents resource tags. diff --git a/src/Network/Network/help/Update-AzVHubRouteTable.md b/src/Network/Network/help/Update-AzVHubRouteTable.md new file mode 100644 index 000000000000..3ca8e151d4d6 --- /dev/null +++ b/src/Network/Network/help/Update-AzVHubRouteTable.md @@ -0,0 +1,255 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/update-azvhubroutetable +schema: 2.0.0 +--- + +# Update-AzVHubRouteTable + +## SYNOPSIS +Delete a hub route table resource associated with a VirtualHub. + +## SYNTAX + +### ByVHubRouteTableName (Default) +``` +Update-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +Update-AzVHubRouteTable -Name -ParentObject [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVHubRouteTableObject +``` +Update-AzVHubRouteTable -InputObject [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVHubRouteTableResourceId +``` +Update-AzVHubRouteTable -ResourceId [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Updates the specified route table that is associated with the specified virtual hub with the provided routes or the labels. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +This command deletes the hub route table of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +The vhubroutetable resource to Update. + +```yaml +Type: PSVHubRouteTable +Parameter Sets: ByVHubRouteTableObject +Aliases: VHubRouteTable, RouteTable + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Label +The list of labels. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: ResourceName, VHubRouteTableName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName, ByVirtualHubObject +Aliases: ResourceName, VHubRouteTableName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the vhubroutetable resource to Update. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableResourceId +Aliases: VHubRouteTableId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Route +The list of routes for this route table. + +```yaml +Type: PSVHubRoute[] +Parameter Sets: (All) +Aliases: ResourceName, VHubRouteTableName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +## NOTES + +## RELATED LINKS + +[Get-AzVHubRouteTable](./Get-AzVHubRouteTable.md) + +[New-AzVHubRoute](./New-AzVHubRoute.md) + +[New-AzVHubRouteTable](./New-AzVHubRouteTable.md) + +[Remove-AzVHubRouteTable](./Remove-AzVHubRouteTable.md) \ No newline at end of file diff --git a/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md b/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md index fc8de8669303..12ca95050a8b 100644 --- a/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md +++ b/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md @@ -15,20 +15,20 @@ Updates an existing HubVirtualNetworkConnection. ### ByHubVirtualNetworkConnectionName (Default) ``` Update-AzVirtualHubVnetConnection -ResourceGroupName -ParentResourceName -Name - -EnableInternetSecurity [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + -EnableInternetSecurity [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByHubVirtualNetworkConnectionObject ``` Update-AzVirtualHubVnetConnection -InputObject - -EnableInternetSecurity [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + -EnableInternetSecurity [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByHubVirtualNetworkConnectionResourceId ``` -Update-AzVirtualHubVnetConnection -ResourceId -EnableInternetSecurity [-AsJob] +Update-AzVirtualHubVnetConnection -ResourceId -EnableInternetSecurity [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -170,6 +170,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Confirm Prompts you for confirmation before running the cmdlet. diff --git a/src/Network/Network/help/Update-AzVpnConnection.md b/src/Network/Network/help/Update-AzVpnConnection.md index a592c4fbdbd7..8f4bfc1aa5ca 100644 --- a/src/Network/Network/help/Update-AzVpnConnection.md +++ b/src/Network/Network/help/Update-AzVpnConnection.md @@ -17,7 +17,7 @@ Updates a VPN connection. Update-AzVpnConnection -ResourceGroupName -ParentResourceName -Name [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-EnableBgp ] [-UseLocalAzureIpAddress ] [-UsePolicyBasedTrafficSelectors ] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity ] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity ] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -26,7 +26,7 @@ Update-AzVpnConnection -ResourceGroupName -ParentResourceName Update-AzVpnConnection -ResourceId [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-EnableBgp ] [-UseLocalAzureIpAddress ] [-UsePolicyBasedTrafficSelectors ] [-VpnSiteLinkConnection ] - [-EnableInternetSecurity ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-EnableInternetSecurity ] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -35,7 +35,7 @@ Update-AzVpnConnection -ResourceId [-SharedKey ] [-Connec Update-AzVpnConnection -InputObject [-SharedKey ] [-ConnectionBandwidthInMbps ] [-IpSecPolicy ] [-EnableBgp ] [-UseLocalAzureIpAddress ] [-UsePolicyBasedTrafficSelectors ] - [-VpnSiteLinkConnection ] [-EnableInternetSecurity ] [-AsJob] + [-VpnSiteLinkConnection ] [-EnableInternetSecurity ] [-RoutingConfiguration ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -290,6 +290,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -RoutingConfiguration +Routing configuration for this connection + +```yaml +Type: PSRoutingConfiguration +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -SharedKey The shared key required to set this connection up. From c4ed703710ac2c638443e5005e24565f74a31713 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Fri, 12 Jun 2020 19:58:15 -0700 Subject: [PATCH 05/15] add 2 new cmdlets and help files --- ...NewAzureRmExpressRouteConnectionCommand.cs | 5 + ...SetAzureRmExpressRouteConnectionCommand.cs | 5 + .../NewAzureRmP2sVpnGatewayCommand.cs | 5 + .../UpdateAzureRmP2SVpnGatewayCommand.cs | 5 + .../NewAzureRmRoutingConfigurationCommand.cs | 116 ++++++++++ .../NewAzureRmStaticRouteCommand.cs | 57 +++++ .../NewAzureRmVpnConnectionCommand.cs | 5 + .../UpdateAzureRmVpnConnectionCommand.cs | 5 + .../Models/Cortex/PSRoutingConfiguration.cs | 2 +- .../Network/Properties/Resources.Designer.cs | 18 ++ src/Network/Network/Properties/Resources.resx | 6 + .../Network/help/Get-AzVHubRouteTable.md | 203 ++++++++++++++++++ .../help/New-AzRoutingConfiguration.md | 141 ++++++++++++ src/Network/Network/help/New-AzStaticRoute.md | 108 ++++++++++ src/Network/Network/help/New-AzVHubRoute.md | 2 +- 15 files changed, 681 insertions(+), 2 deletions(-) create mode 100644 src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs create mode 100644 src/Network/Network/Cortex/VHubRouteTable/NewAzureRmStaticRouteCommand.cs create mode 100644 src/Network/Network/help/Get-AzVHubRouteTable.md create mode 100644 src/Network/Network/help/New-AzRoutingConfiguration.md create mode 100644 src/Network/Network/help/New-AzStaticRoute.md diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs index c8ba88a1ef0e..7ab2f89f5849 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/NewAzureRmExpressRouteConnectionCommand.cs @@ -155,6 +155,11 @@ private PSExpressRouteConnection CreateExpressRouteConnection() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + expressRouteConnection.RoutingConfiguration = RoutingConfiguration; } diff --git a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs index 8e8fbcc6593d..efa2844231e7 100644 --- a/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs +++ b/src/Network/Network/Cortex/ExpressRouteGateway/ExpressRouteConnection/SetAzureRmExpressRouteConnectionCommand.cs @@ -157,6 +157,11 @@ public override void Execute() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + expressRouteConnectionToModify.RoutingConfiguration = RoutingConfiguration; } diff --git a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs index b6d3c597ee99..3fe3427ef48f 100644 --- a/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs +++ b/src/Network/Network/Cortex/P2SVpnGateway/NewAzureRmP2sVpnGatewayCommand.cs @@ -208,6 +208,11 @@ public override void Execute() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + p2sConnectionConfig.RoutingConfiguration = RoutingConfiguration; } diff --git a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs index 8d0f499c0ba0..dce902aaba1d 100644 --- a/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs +++ b/src/Network/Network/Cortex/P2SVpnGateway/UpdateAzureRmP2SVpnGatewayCommand.cs @@ -232,6 +232,11 @@ public override void Execute() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes!= null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + if (existingP2SVpnGateway.P2SConnectionConfigurations != null && existingP2SVpnGateway.P2SConnectionConfigurations.Any()) { existingP2SVpnGateway.P2SConnectionConfigurations[0].RoutingConfiguration = RoutingConfiguration; diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs new file mode 100644 index 000000000000..3c602b968201 --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs @@ -0,0 +1,116 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + + +namespace Microsoft.Azure.Commands.Network +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingConfguration", + SupportsShouldProcess = false), + OutputType(typeof(PSRoutingConfiguration))] + public class NewAzureRmRoutingConfigurationCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The hub route table associated with this routing configuration.")] + [ResourceIdCompleter("Microsoft.Network/virtualHubs/hubRouteTables")] + public string AssociatedRouteTable { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The list of labels for the PropagatedRouteTables property.")] + public string[] Label { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The list of resource ids of all the hub route tables to advertise the routes to for the PropagatedRouteTables property.")] + public string[] Id { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "List of routes that control routing from VirtualHub into a virtual network connection.")] + public PSStaticRoute[] StaticRoute { get; set; } + + public override void Execute() + { + base.Execute(); + + // Resolve the provided Associated RouteTable + var associatedRouteTable = ResolveRouteTableId(AssociatedRouteTable); + if (associatedRouteTable == null) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + + // Resolve the Propagated RouteTable property + var propagatedRouteTable = new PSPropagatedRouteTable + { + Labels = Label.ToList() + }; + + var resolvedIds = new List() { }; + foreach (var id in Id) + { + var resolvedRouteTable = ResolveRouteTableId(id); + if (resolvedRouteTable == null) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + + resolvedIds.Add( + new PSResourceId() + { + Id = resolvedRouteTable.Id + }); + } + + propagatedRouteTable.Ids = resolvedIds; + + var routingConfig = new PSRoutingConfiguration + { + PropagatedRouteTables = propagatedRouteTable, + AssociatedRouteTable = new PSResourceId() { Id = associatedRouteTable.Id }, + VnetRoutes = new PSVnetRoute + { + StaticRoutes = StaticRoute?.ToList() + } + }; + + WriteObject(routingConfig); + } + + private PSVHubRouteTable ResolveRouteTableId(string routeTableId) + { + var parsedRouteTableId = new ResourceIdentifier(routeTableId); + if (!string.Equals(parsedRouteTableId.ResourceType, "Microsoft.Network/virtualHubs/hubRouteTables", StringComparison.InvariantCultureIgnoreCase)) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableReferenceNotFound); + } + + var parsedHubId = new ResourceIdentifier(parsedRouteTableId.ParentResource); + var resolvedRouteTable = new VHubRouteTableBaseCmdlet() + .GetVHubRouteTable(parsedRouteTableId.ResourceGroupName, parsedHubId.ResourceName, parsedRouteTableId.ResourceName); + return resolvedRouteTable; + } + } +} diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmStaticRouteCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmStaticRouteCommand.cs new file mode 100644 index 000000000000..4e7a7133f682 --- /dev/null +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmStaticRouteCommand.cs @@ -0,0 +1,57 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Network +{ + using System.Linq; + using System.Management.Automation; + using Microsoft.Azure.Commands.Network.Models; + + [Cmdlet( + VerbsCommon.New, + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StaticRoute", + SupportsShouldProcess = false), + OutputType(typeof(PSStaticRoute))] + public class NewAzureRmStaticRouteCommand : NetworkBaseCmdlet + { + [Parameter( + Mandatory = true, + HelpMessage = "The name of this static route.")] + public string Name { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The list of address prefixes.")] + public string[] AddressPrefix { get; set; } + + [Parameter( + Mandatory = true, + HelpMessage = "The next hop IpAddress.")] + public string NextHopIpAddress { get; set; } + + public override void Execute() + { + base.Execute(); + + var staticRoute = new PSStaticRoute + { + Name = Name, + NextHopIpAddress = NextHopIpAddress, + AddressPrefixes = AddressPrefix?.ToList() + }; + + WriteObject(staticRoute); + } + } +} diff --git a/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs b/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs index 8d1a90cd0a47..f3716ddeb582 100644 --- a/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs +++ b/src/Network/Network/Cortex/VpnConnection/NewAzureRmVpnConnectionCommand.cs @@ -247,6 +247,11 @@ private PSVpnConnection CreateVpnConnection() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + vpnConnection.RoutingConfiguration = RoutingConfiguration; } diff --git a/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs b/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs index a6f4f0b8430c..dcb63c625c8c 100644 --- a/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs +++ b/src/Network/Network/Cortex/VpnConnection/UpdateAzureRmVpnConnectionCommand.cs @@ -223,6 +223,11 @@ public override void Execute() if (this.RoutingConfiguration != null) { + if (this.RoutingConfiguration.VnetRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes != null && this.RoutingConfiguration.VnetRoutes.StaticRoutes.Any()) + { + throw new PSArgumentException(Properties.Resources.StaticRoutesNotSupportedForThisRoutingConfiguration); + } + vpnConnectionToModify.RoutingConfiguration = RoutingConfiguration; } diff --git a/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs index 4ae597e5454b..5176f06b542d 100644 --- a/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs +++ b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs @@ -28,7 +28,7 @@ public class PSRoutingConfiguration public PSPropagatedRouteTable PropagatedRouteTables { get; set; } [Ps1Xml(Label = "Vnet Routes", Target = ViewControl.Table)] - public PSVnetRoute VnetRoute { get; set; } + public PSVnetRoute VnetRoutes { get; set; } } public class PSPropagatedRouteTable diff --git a/src/Network/Network/Properties/Resources.Designer.cs b/src/Network/Network/Properties/Resources.Designer.cs index e40af6ba60ab..80d069c1b285 100644 --- a/src/Network/Network/Properties/Resources.Designer.cs +++ b/src/Network/Network/Properties/Resources.Designer.cs @@ -1302,6 +1302,15 @@ internal static string StaticIpAddressErrorMessage { } } + /// + /// Looks up a localized string similar to Static Routes are not supported in Routing Configuration for ExpressRoute Connection, VpnConnection and P2SGatewayConnectionConfiguration objects.. + /// + internal static string StaticRoutesNotSupportedForThisRoutingConfiguration { + get { + return ResourceManager.GetString("StaticRoutesNotSupportedForThisRoutingConfiguration", resourceCulture); + } + } + /// /// Looks up a localized string similar to TCP protocol configuration mast have port.. /// @@ -1509,6 +1518,15 @@ internal static string VHubRouteTableNotFound { } } + /// + /// Looks up a localized string similar to A valid HubRouteTable reference is required.. + /// + internal static string VHubRouteTableReferenceNotFound { + get { + return ResourceManager.GetString("VHubRouteTableReferenceNotFound", resourceCulture); + } + } + /// /// Looks up a localized string similar to A valid VirtualNetworkGateway is required to create Virtual Router. /// diff --git a/src/Network/Network/Properties/Resources.resx b/src/Network/Network/Properties/Resources.resx index 0e5229796881..36e06c980d34 100644 --- a/src/Network/Network/Properties/Resources.resx +++ b/src/Network/Network/Properties/Resources.resx @@ -686,4 +686,10 @@ The HubRouteTable could not be found. + + Static Routes are not supported in Routing Configuration for ExpressRoute Connection, VpnConnection and P2SGatewayConnectionConfiguration objects. + + + A valid HubRouteTable reference is required. + \ No newline at end of file diff --git a/src/Network/Network/help/Get-AzVHubRouteTable.md b/src/Network/Network/help/Get-AzVHubRouteTable.md new file mode 100644 index 000000000000..c4813f8f7779 --- /dev/null +++ b/src/Network/Network/help/Get-AzVHubRouteTable.md @@ -0,0 +1,203 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/get-azvhubroutetable +schema: 2.0.0 +--- + +# Get-AzVHubRouteTable + +## SYNOPSIS +Retrieves a hub route table resource associated with a VirtualHub. + +## SYNTAX + +### ByVHubRouteTableName (Default) +``` +Get-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVirtualHubObject +``` +Get-AzVHubRouteTable -Name -VirtualHub [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ByVHubRouteTableResourceId +``` +Get-AzVHubRouteTable -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Gets the specified hub route table that is associated with the specified virtual hub. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +This command gets the hub route table of the virtual hub. + +## PARAMETERS + +### -AsJob +Run cmdlet in the background + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName, ByVirtualHubObject +Aliases: ResourceName, VHubRouteTableName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentObject +The parent virtual hub object of this resource. + +```yaml +Type: PSVirtualHub +Parameter Sets: ByVirtualHubObject +Aliases: ParentVirtualHub, VirtualHub + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ParentResourceName +The parent resource name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: VirtualHubName, ParentVirtualHubName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The resource group name. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The resource id of the vhubroutetable resource to Get. + +```yaml +Type: String +Parameter Sets: ByVHubRouteTableResourceId +Aliases: VHubRouteTableId + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVirtualHub + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + +## NOTES + +## RELATED LINKS + +[New-AzVHubRoute](./New-AzVHubRoute.md) + +[New-AzVHubRouteTable](./New-AzVHubRouteTable.md) + +[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) + +[Remove-AzVHubRouteTable](./Remove-AzVHubRouteTable.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzRoutingConfiguration.md b/src/Network/Network/help/New-AzRoutingConfiguration.md new file mode 100644 index 000000000000..4398524334be --- /dev/null +++ b/src/Network/Network/help/New-AzRoutingConfiguration.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azroutingconfiguration +schema: 2.0.0 +--- + +# New-AzRoutingConfiguration + +## SYNOPSIS +Creates a RoutingConfiguration object. + +## SYNTAX + +``` +New-AzRoutingConfiguration -AssociatedRouteTable -Label -Id -StaticRoute [-DefaultProfile ] [] +``` + +## DESCRIPTION +Creates a RoutingConfiguration object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +The above command will create a RoutingConfiguration object which can then be added to a connection resource. + +## PARAMETERS + +### -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 +``` + +### -AssociatedRouteTable +The hub route table associated with this routing configuration. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +The list of resource ids of all the hub route tables to advertise the routes to for the PropagatedRouteTables property. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Label +The list of labels for the PropagatedRouteTables property. + +```yaml +Type: String[] +Parameter Sets: (all) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StaticRoute +List of routes that control routing from VirtualHub into a virtual network connection. + +```yaml +Type: PSStaticRoute[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +### Microsoft.Azure.Commands.Network.Models.PSStaticRoute + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration + +## NOTES + +## RELATED LINKS + +[New-AzStaticRoute](./New-AzStaticRoute.md) + +[New-AzExpressRouteConnection](./New-AzExpressRouteConnection.md) + +[Set-AzExpressRouteConnection](./Set-AzExpressRouteConnection.md) + +[New-AzVirtualHubVnetConnection](./New-AzVpnConnection.md) + +[Update-AzVirtualHubVnetConnection](./Update-AzVpnConnection.md) + +[New-AzP2sVpnGateway](./New-AzP2sVpnGateway.md) + +[Update-AzP2sVpnGateway](./Update-AzP2sVpnGateway.md) + +[New-AzVpnConnection](./New-AzVpnConnection.md) + +[Update-AzVpnConnection](./Update-AzVpnConnection.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzStaticRoute.md b/src/Network/Network/help/New-AzStaticRoute.md new file mode 100644 index 000000000000..dc810f50e7cc --- /dev/null +++ b/src/Network/Network/help/New-AzStaticRoute.md @@ -0,0 +1,108 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Network.dll-Help.xml +Module Name: Az.Network +online version: https://docs.microsoft.com/en-us/powershell/module/az.network/new-azstaticroute +schema: 2.0.0 +--- + +# New-AzStaticRoute + +## SYNOPSIS +Creates a StaticRoute object which can then be added to a RoutingConfiguration object. + +## SYNTAX + +``` +New-AzStaticRoute -Name -AddressPrefix -NextHopIpAddress [-DefaultProfile ] [] +``` + +## DESCRIPTION +Creates a StaticRoute object. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> +``` + +The above command will create a StaticRoute object which can then be added to a RoutingConfiguration object. + +## PARAMETERS + +### -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 +``` + +### -AddressPrefix +List of address prefixes. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The route name. + +```yaml +Type: String +Parameter Sets: (all) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NextHopIpAddress +The next hop ip address. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Network.Models.PSStaticRoute + +## NOTES + +## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) \ No newline at end of file diff --git a/src/Network/Network/help/New-AzVHubRoute.md b/src/Network/Network/help/New-AzVHubRoute.md index ab09eac2dbc8..bdd62834e940 100644 --- a/src/Network/Network/help/New-AzVHubRoute.md +++ b/src/Network/Network/help/New-AzVHubRoute.md @@ -125,7 +125,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### None +### System.String ## OUTPUTS From cd37c6468af72bbe717cfa188119e2aeb2c6c453 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Fri, 12 Jun 2020 20:00:39 -0700 Subject: [PATCH 06/15] update psd and changelog --- src/Network/Network/Az.Network.psd1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Network/Az.Network.psd1 b/src/Network/Network/Az.Network.psd1 index 9a6d882019dc..fc5da1695f1b 100644 --- a/src/Network/Network/Az.Network.psd1 +++ b/src/Network/Network/Az.Network.psd1 @@ -491,7 +491,7 @@ CmdletsToExport = 'Add-AzApplicationGatewayAuthenticationCertificate', 'Remove-AzSecurityPartnerProvider', 'Get-AzSecurityPartnerProvider', 'Set-AzSecurityPartnerProvider', 'Reset-AzHubRouter', - 'New-AzVHubRoute', + 'New-AzVHubRoute', 'New-AzStaticRoute', 'New-AzRoutingConfiguration', 'New-AzVHubRouteTable', 'Get-AzVHubRouteTable', 'Update-AzVHubRouteTable', 'Remove-AzVHubRouteTable' From 80710e34969e1c7e8ea805083486aa7c9b8cb4cf Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Sun, 14 Jun 2020 21:16:35 -0700 Subject: [PATCH 07/15] adding tests --- .../Network.Test/ScenarioTests/CortexTests.cs | 8 ++ .../ScenarioTests/CortexTests.ps1 | 87 +++++++++++++++++++ 2 files changed, 95 insertions(+) diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.cs b/src/Network/Network.Test/ScenarioTests/CortexTests.cs index 6167fb99084b..a2974ea47c89 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.cs +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.cs @@ -82,5 +82,13 @@ public void TestCortexVirtualHubCRUD() { TestRunner.RunTestScript("Test-CortexVirtualHubCRUD"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.Owner, NrpTeamAlias.brooklynft)] + public void TestVHubRouteTableCRUD() + { + TestRunner.RunTestScript("Test-VHubRouteTableCRUD"); + } } } diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index b9f6b1a49251..6d99cbff57e3 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -894,4 +894,91 @@ function Test-CortexVirtualHubCRUD { Clean-ResourceGroup $rgname } +} + +function Test-VHubRouteTableCRUD +{ + # Setup + $rgName = Get-ResourceName + $rglocation = Get-ProviderLocation ResourceManagement "West Central US" + + $virtualWanName = Get-ResourceName + $virtualHubName = Get-ResourceName + $defaultRouteTableName = "defaultRouteTable" + $noneRouteTableName = "noneRouteTable" + $customRouteTableName = "customRouteTable" + $firewallName = "azFwInVirtualHub" + + try + { + # Create the resource group + New-AzResourceGroup -Name $rgName -Location $rglocation + + # Create the Virtual Wan + New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic + $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName + + # Create the Virtual Hub + New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan + $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName + Assert-AreEqual $rgName $virtualHub.ResourceGroupName + Assert-AreEqual $virtualHubName $virtualHub.Name + Assert-AreEqual "10.0.0.0/16" $virtualHub.AddressPrefix + + # Verify defaultRouteTable and noneRouteTable are created + $hubRouteTables = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName + Assert-AreEqual 2 $hubRouteTables.Count + + # Verify defaultRouteTable + $defaultRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $defaultRouteTableName + Assert-AreEqual 0 $defaultRouteTable.Routes.Count + Assert-AreEqual 1 $defaultRouteTable.Labels.Count + + # Verify noneRouteTable + $noneRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $noneRouteTableName + Assert-AreEqual 0 $noneRouteTable.Routes.Count + Assert-AreEqual 0 $noneRouteTable.Labels.Count + + # Create a firewall in the Virtual hub + New-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Location $rglocation -Sku AZFW_Hub -VirtualHubId $virtualHub.Id + $firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName + Assert-NotNull $firewall.IpConfigurations + + # Create new route + $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" + + # Create new customRouteTable + New-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Route @($route1) -Label @("customLabel") + $customRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName + Assert-AreEqual $customRouteTableName $customRouteTable.Name + Assert-AreEqual 1 $customRouteTable.Routes.Count + Assert-AreEqual 1 $customRouteTable.Labels.Count + + # Add one more route + $route2 = New-AzVHubRoute -Name "internet-traffic" -Destination @("0.0.0.0/0") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" + Update-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Route @($route1, $route2) + $updateCustomRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName + Assert-AreEqual $customRouteTableName $updateCustomRouteTable.Name + Assert-AreEqual 2 $updateCustomRouteTable.Routes.Count + Assert-AreEqual 1 $customRouteTable.Labels.Count + + # Delete the custom route table + $ delete = Remove-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Force -PassThru + Assert-AreEqual $True $delete + + # Delete the firewall + $delete = Remove-AzFirewall -Name $firewallName -ResourceGroupName $rgName + Assert-AreEqual $True $delete + + # Delete the resources + $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru + Assert-AreEqual $True $delete + + $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru + Assert-AreEqual $True $delete + } + finally + { + Clean-ResourceGroup $rgname + } } \ No newline at end of file From 2a66681dea9fc6dd059a02b7ef11ad63e5b510f9 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 15 Jun 2020 00:34:38 -0700 Subject: [PATCH 08/15] updating tests and help files --- .../ScenarioTests/CortexTests.ps1 | 45 +++++++------------ .../NewAzureRmRoutingConfigurationCommand.cs | 2 +- .../NewAzureRmVHubRouteCommand.cs | 7 +++ .../Network/help/Get-AzVHubRouteTable.md | 15 ++++++- src/Network/Network/help/New-AzVHubRoute.md | 2 +- .../Network/help/New-AzVHubRouteTable.md | 14 +++++- .../Network/help/Remove-AzVHubRouteTable.md | 16 ++++++- .../Network/help/Update-AzVHubRouteTable.md | 19 +++++++- 8 files changed, 85 insertions(+), 35 deletions(-) diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index 6d99cbff57e3..aa10eb121240 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -900,7 +900,7 @@ function Test-VHubRouteTableCRUD { # Setup $rgName = Get-ResourceName - $rglocation = Get-ProviderLocation ResourceManagement "West Central US" + $location = Get-ProviderLocation ResourceManagement "West Central US" $virtualWanName = Get-ResourceName $virtualHubName = Get-ResourceName @@ -912,37 +912,24 @@ function Test-VHubRouteTableCRUD try { # Create the resource group - New-AzResourceGroup -Name $rgName -Location $rglocation + New-AzResourceGroup -Name $rgName -Location $location # Create the Virtual Wan - New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $rglocation -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic + New-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Location $location -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic $virtualWan = Get-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName # Create the Virtual Hub - New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $rglocation -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan + New-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Location $location -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan $virtualHub = Get-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName Assert-AreEqual $rgName $virtualHub.ResourceGroupName Assert-AreEqual $virtualHubName $virtualHub.Name Assert-AreEqual "10.0.0.0/16" $virtualHub.AddressPrefix - # Verify defaultRouteTable and noneRouteTable are created - $hubRouteTables = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName - Assert-AreEqual 2 $hubRouteTables.Count - - # Verify defaultRouteTable - $defaultRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $defaultRouteTableName - Assert-AreEqual 0 $defaultRouteTable.Routes.Count - Assert-AreEqual 1 $defaultRouteTable.Labels.Count - - # Verify noneRouteTable - $noneRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $noneRouteTableName - Assert-AreEqual 0 $noneRouteTable.Routes.Count - Assert-AreEqual 0 $noneRouteTable.Labels.Count - # Create a firewall in the Virtual hub - New-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Location $rglocation -Sku AZFW_Hub -VirtualHubId $virtualHub.Id + $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 + $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp + New-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses $firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName - Assert-NotNull $firewall.IpConfigurations # Create new route $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" @@ -956,29 +943,29 @@ function Test-VHubRouteTableCRUD # Add one more route $route2 = New-AzVHubRoute -Name "internet-traffic" -Destination @("0.0.0.0/0") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" - Update-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Route @($route1, $route2) + Update-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Route @($route2) $updateCustomRouteTable = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName Assert-AreEqual $customRouteTableName $updateCustomRouteTable.Name - Assert-AreEqual 2 $updateCustomRouteTable.Routes.Count + Assert-AreEqual 1 $updateCustomRouteTable.Routes.Count Assert-AreEqual 1 $customRouteTable.Labels.Count # Delete the custom route table $ delete = Remove-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Force -PassThru Assert-AreEqual $True $delete - + } + finally + { # Delete the firewall - $delete = Remove-AzFirewall -Name $firewallName -ResourceGroupName $rgName + $delete = Remove-AzFirewall -Name $firewallName -ResourceGroupName $rgName -Force -PassThru Assert-AreEqual $True $delete - + # Delete the resources $delete = Remove-AzVirtualHub -ResourceGroupName $rgName -Name $virtualHubName -Force -PassThru Assert-AreEqual $True $delete - + $delete = Remove-AzVirtualWan -ResourceGroupName $rgName -Name $virtualWanName -Force -PassThru Assert-AreEqual $True $delete - } - finally - { + Clean-ResourceGroup $rgname } } \ No newline at end of file diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs index 3c602b968201..1d47fbc6f3c4 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Network [Cmdlet( VerbsCommon.New, - ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingConfguration", + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RoutingConfiguration", SupportsShouldProcess = false), OutputType(typeof(PSRoutingConfiguration))] public class NewAzureRmRoutingConfigurationCommand : NetworkBaseCmdlet diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs index 559702c4c264..621453c6055b 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmVHubRouteCommand.cs @@ -43,6 +43,12 @@ public class NewAzureRmVHubRouteCommand : NetworkBaseCmdlet [ValidateNotNullOrEmpty] public string NextHop { get; set; } + [Parameter( + Mandatory = true, + HelpMessage = "Name for this route.")] + [ValidateNotNullOrEmpty] + public string Name { get; set; } + [Parameter( Mandatory = true, HelpMessage = "The Next Hop type.")] @@ -55,6 +61,7 @@ public override void Execute() var vHubRoute = new PSVHubRoute { + Name = this.Name, Destinations = this.Destination?.ToList(), DestinationType = this.DestinationType, NextHop = this.NextHop, diff --git a/src/Network/Network/help/Get-AzVHubRouteTable.md b/src/Network/Network/help/Get-AzVHubRouteTable.md index c4813f8f7779..511b8275a355 100644 --- a/src/Network/Network/help/Get-AzVHubRouteTable.md +++ b/src/Network/Network/help/Get-AzVHubRouteTable.md @@ -34,7 +34,20 @@ Gets the specified hub route table that is associated with the specified virtual ### Example 1 ```powershell -PS C:\> +PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp +PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") +PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" ``` This command gets the hub route table of the virtual hub. diff --git a/src/Network/Network/help/New-AzVHubRoute.md b/src/Network/Network/help/New-AzVHubRoute.md index bdd62834e940..e985fe1dcd89 100644 --- a/src/Network/Network/help/New-AzVHubRoute.md +++ b/src/Network/Network/help/New-AzVHubRoute.md @@ -23,7 +23,7 @@ Creates a VHubRoute object. ### Example 1 ```powershell -PS C:\> +PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" ``` The above command will create a VHubRoute object which can then be added to a VHubRouteTable resource. diff --git a/src/Network/Network/help/New-AzVHubRouteTable.md b/src/Network/Network/help/New-AzVHubRouteTable.md index c03ee8b865be..62a642dcbe32 100644 --- a/src/Network/Network/help/New-AzVHubRouteTable.md +++ b/src/Network/Network/help/New-AzVHubRouteTable.md @@ -34,7 +34,19 @@ Creates the specified route table that is associated with the specified virtual ### Example 1 ```powershell -PS C:\> +PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp +PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") ``` This command creates a hub route table of the virtual hub. diff --git a/src/Network/Network/help/Remove-AzVHubRouteTable.md b/src/Network/Network/help/Remove-AzVHubRouteTable.md index c98fd11c1a32..eea4450ddce7 100644 --- a/src/Network/Network/help/Remove-AzVHubRouteTable.md +++ b/src/Network/Network/help/Remove-AzVHubRouteTable.md @@ -39,7 +39,21 @@ Deletes the specified hub route table that is associated with the specified virt ### Example 1 ```powershell -PS C:\> +PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp +PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") +PS C:\> $testRouteTable = Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" +PS C:\> Remove-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" ``` This command deletes the hub route table of the virtual hub. diff --git a/src/Network/Network/help/Update-AzVHubRouteTable.md b/src/Network/Network/help/Update-AzVHubRouteTable.md index 3ca8e151d4d6..c016b3a54cbd 100644 --- a/src/Network/Network/help/Update-AzVHubRouteTable.md +++ b/src/Network/Network/help/Update-AzVHubRouteTable.md @@ -39,7 +39,24 @@ Updates the specified route table that is associated with the specified virtual ### Example 1 ```powershell -PS C:\> +PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic +PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" + +PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan +PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" + +PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 +PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp +PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses +PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" + +PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") +PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" + +PS C:\> $route2 = New-AzVHubRoute -Name "internet-traffic" -Destination @("0.0.0.0/0") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> Update-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route2) +PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" ``` This command deletes the hub route table of the virtual hub. From 731428210bf0162a44ade762f2e01f216b7f70f8 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 15 Jun 2020 10:47:33 -0700 Subject: [PATCH 09/15] add test recording --- .../ScenarioTests/CortexTests.ps1 | 2 +- .../TestVHubRouteTableCRUD.json | 17865 ++++++++++++++++ 2 files changed, 17866 insertions(+), 1 deletion(-) create mode 100644 src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json diff --git a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 index aa10eb121240..090a6cadaa92 100644 --- a/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 +++ b/src/Network/Network.Test/ScenarioTests/CortexTests.ps1 @@ -950,7 +950,7 @@ function Test-VHubRouteTableCRUD Assert-AreEqual 1 $customRouteTable.Labels.Count # Delete the custom route table - $ delete = Remove-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Force -PassThru + $delete = Remove-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name $customRouteTableName -Force -PassThru Assert-AreEqual $True $delete } finally diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json new file mode 100644 index 000000000000..9a259a67b4b8 --- /dev/null +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json @@ -0,0 +1,17865 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps5557?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNTU1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b31243ee-98f3-4709-b55b-43691622f405" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + ], + "x-ms-correlation-request-id": [ + "c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073636Z:c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:36 GMT" + ], + "Content-Length": [ + "172" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557\",\r\n \"name\": \"ps5557\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7c7701ff-3c91-4a65-ac53-fda743394dbe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "20e8d7e5-e451-47aa-b771-3e150a2a2694" + ], + "x-ms-correlation-request-id": [ + "20e8d7e5-e451-47aa-b771-3e150a2a2694" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073637Z:20e8d7e5-e451-47aa-b771-3e150a2a2694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "214" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps3759' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + ], + "x-ms-request-id": [ + "36b2eeee-9248-423c-9570-456755f4487d" + ], + "x-ms-correlation-request-id": [ + "1aeb961b-5e2b-4498-80ef-d8c32ee47a0b" + ], + "x-ms-arm-service-request-id": [ + "7b7f5512-42f6-4dd1-aa9d-af7e63151a1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073650Z:1aeb961b-5e2b-4498-80ef-d8c32ee47a0b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:50 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73ca471c-7624-4926-aa28-08aac7cfa5d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + ], + "x-ms-request-id": [ + "1987fd63-dde6-41d2-a292-2eee8b52257d" + ], + "x-ms-correlation-request-id": [ + "3a07cc46-c44e-4aae-bf51-97959e625204" + ], + "x-ms-arm-service-request-id": [ + "0043a3df-a7e8-4d5a-8ab0-e0f796e5b408" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073650Z:3a07cc46-c44e-4aae-bf51-97959e625204" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:50 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27846823-1ec4-45cd-b97f-023961737bfe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + ], + "x-ms-request-id": [ + "23b916f2-1ced-472e-8b96-1b686161ef6a" + ], + "x-ms-correlation-request-id": [ + "90c3d050-1d73-4c48-8460-0289eddca6ea" + ], + "x-ms-arm-service-request-id": [ + "d08e20ad-0c49-4037-b32f-11fbef2ed2e7" + ], + "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:20200615T073651Z:90c3d050-1d73-4c48-8460-0289eddca6ea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:51 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4846b869-d8cb-4cf9-b73d-7fed49e019a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + ], + "x-ms-request-id": [ + "fe9ffc93-ea4c-424e-a13f-e8c216a54a3a" + ], + "x-ms-correlation-request-id": [ + "2aeff750-56f1-41c0-af5e-642bd4641edb" + ], + "x-ms-arm-service-request-id": [ + "3c272599-fdd7-476c-84dc-acd045262ea2" + ], + "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:20200615T073651Z:2aeff750-56f1-41c0-af5e-642bd4641edb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:50 GMT" + ], + "Content-Length": [ + "502" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "754b76b6-9fb7-49f0-a5a8-372ff29d221d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "139" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7d7cd781-7f35-4a25-bfe8-17c5a15c853f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/7d7cd781-7f35-4a25-bfe8-17c5a15c853f?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "d2772b6c-f189-41ff-b7b8-2ea5b2e9467d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "4262afc2-8249-4470-87c7-c20887fb7224" + ], + "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:20200615T073640Z:d2772b6c-f189-41ff-b7b8-2ea5b2e9467d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:40 GMT" + ], + "Content-Length": [ + "501" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"3411a3a8-f5f2-4d02-9a90-50cfef5a90ae\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/7d7cd781-7f35-4a25-bfe8-17c5a15c853f?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzdkN2NkNzgxLTdmMzUtNGEyNS1iZmU4LTE3YzVhMTVjODUzZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1f3cdf6b-defe-4c98-b7f4-019b19506fc7" + ], + "x-ms-correlation-request-id": [ + "644230b4-3f21-450a-9ff5-4dbfff121e04" + ], + "x-ms-arm-service-request-id": [ + "2a2cecf2-c9be-46fd-9e37-065f33223861" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073650Z:644230b4-3f21-450a-9ff5-4dbfff121e04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:50 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cc52fcc-88e2-4e5f-a624-ebfbcdbae1e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "36bf7ddc-5582-4353-8603-15c670f9db67" + ], + "x-ms-correlation-request-id": [ + "36bf7ddc-5582-4353-8603-15c670f9db67" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073651Z:36bf7ddc-5582-4353-8603-15c670f9db67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "214" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps7830' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1fc36c4c-7548-4089-be34-83da6be4cfbd" + ], + "x-ms-correlation-request-id": [ + "6f01ac74-58bf-4154-923f-5084a16a5823" + ], + "x-ms-arm-service-request-id": [ + "65ff2dd0-4f6c-4f83-979c-549c56b7a692" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074024Z:6f01ac74-58bf-4154-923f-5084a16a5823" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:23 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "568f79c4-6313-494c-a6b9-912ec7677de4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa29f196-2660-42aa-9ff6-84f2177b3485" + ], + "x-ms-correlation-request-id": [ + "08397ffd-fb97-4048-b822-004cee166449" + ], + "x-ms-arm-service-request-id": [ + "d2740190-c773-4a1c-8181-911909cf6852" + ], + "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:20200615T074024Z:08397ffd-fb97-4048-b822-004cee166449" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:23 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79d92730-e4cb-40ce-a409-e3455ade499f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a1004644-6f81-4416-9c34-94d912f47465" + ], + "x-ms-correlation-request-id": [ + "04900c12-31d2-42ed-9c07-ba8d60b32b5a" + ], + "x-ms-arm-service-request-id": [ + "8ecc5a77-fb6d-4f7b-b04d-ef52a63c33df" + ], + "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:20200615T074024Z:04900c12-31d2-42ed-9c07-ba8d60b32b5a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:24 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11d5f681-25be-42a0-9613-95abc61a9adc" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "26962dce-da48-43b8-945e-3a39a474f4b9" + ], + "x-ms-correlation-request-id": [ + "ee2de2e9-f78a-4e23-aebe-31be5fa5a956" + ], + "x-ms-arm-service-request-id": [ + "03bb54da-22b4-4b38-a1e1-cd83b70be2c6" + ], + "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:20200615T075814Z:ee2de2e9-f78a-4e23-aebe-31be5fa5a956" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:13 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"a4cb1946-57d1-4964-afd7-c3933c69f387\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7cef1d2e-bbfd-4126-841a-3959105d1bc1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9f504f36-55dd-43b9-b40a-7fe83ce2cfc1" + ], + "x-ms-correlation-request-id": [ + "fb9703df-62f9-4fa2-8b52-5cd1a5ab4b3d" + ], + "x-ms-arm-service-request-id": [ + "3d0d264e-73ad-448b-8149-bf1612848d99" + ], + "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:20200615T075836Z:fb9703df-62f9-4fa2-8b52-5cd1a5ab4b3d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:36 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ba2000-abfb-4e47-a7c4-48b90675d78a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "46764f8c-ad56-45ea-85df-7bc4d5bd5b4c" + ], + "x-ms-correlation-request-id": [ + "8f7dd5b2-2251-41ed-8f99-5f2b11770931" + ], + "x-ms-arm-service-request-id": [ + "8247b97c-6dc9-45a9-81fb-58f54143270a" + ], + "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:20200615T075847Z:8f7dd5b2-2251-41ed-8f99-5f2b11770931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:46 GMT" + ], + "Content-Length": [ + "1178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b67325ff-c8b0-4230-b7d1-2213e2b2dadd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "352" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "65aa0bba-70c4-4980-ad86-0f72eb94c4cf" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "274cbf7c-e07e-4902-bac1-ee72ba941c5c" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "cc035c84-1985-47d8-be2b-f82a868aa210" + ], + "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:20200615T073652Z:274cbf7c-e07e-4902-bac1-ee72ba941c5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:36:52 GMT" + ], + "Content-Length": [ + "749" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"55ac4e6a-77f0-4499-bcdd-62a30594e5e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e8aec50-52c4-456a-bf29-6e7c510305d3" + ], + "x-ms-correlation-request-id": [ + "6a190792-0926-43e8-af92-eec7954da0d0" + ], + "x-ms-arm-service-request-id": [ + "95e6ee77-e43e-42e9-8646-16e5ccf11d0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073702Z:6a190792-0926-43e8-af92-eec7954da0d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aac1c476-4073-494f-a2e1-8a9c3b54578f" + ], + "x-ms-correlation-request-id": [ + "687f6036-eb6a-4f21-8300-5268a27c5f3e" + ], + "x-ms-arm-service-request-id": [ + "8ca76839-f8bd-4830-9fdb-1f8f7ad34c12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073712Z:687f6036-eb6a-4f21-8300-5268a27c5f3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0b84019d-5534-449e-9943-25e986b6b845" + ], + "x-ms-correlation-request-id": [ + "50a15847-e13a-4e74-8d6f-600cd674a8c1" + ], + "x-ms-arm-service-request-id": [ + "b9156163-8f01-4f08-b7a0-402b6c737aed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073722Z:50a15847-e13a-4e74-8d6f-600cd674a8c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0446bb2f-f441-4412-92d5-0d8008f312e7" + ], + "x-ms-correlation-request-id": [ + "ec2a3d4f-2954-4888-bb37-47bc94443d07" + ], + "x-ms-arm-service-request-id": [ + "2979d515-9bd3-4281-a252-16845de2c8ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073732Z:ec2a3d4f-2954-4888-bb37-47bc94443d07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "af0e0501-0f18-464b-9913-888716c73ffa" + ], + "x-ms-correlation-request-id": [ + "48edddd5-dc0a-4336-b4c1-6acb42248984" + ], + "x-ms-arm-service-request-id": [ + "7044f874-050f-4ffa-a223-61030003ff56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073742Z:48edddd5-dc0a-4336-b4c1-6acb42248984" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4563d330-209d-4344-8fe4-fc33be8db353" + ], + "x-ms-correlation-request-id": [ + "b2a7a746-af1c-464e-b2a3-3c3a5221d9bc" + ], + "x-ms-arm-service-request-id": [ + "df9fb101-a890-4cad-8e2e-a35042a88467" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073752Z:b2a7a746-af1c-464e-b2a3-3c3a5221d9bc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:37:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4e631688-773f-4038-a965-488508c50358" + ], + "x-ms-correlation-request-id": [ + "13b15557-7a66-47f2-9999-96b93ac088b6" + ], + "x-ms-arm-service-request-id": [ + "f6e1788a-298b-4eea-a66d-77b74f649db4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073803Z:13b15557-7a66-47f2-9999-96b93ac088b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "208b938f-d6c6-4ae8-93cb-99fa4d5160b1" + ], + "x-ms-correlation-request-id": [ + "ce5d4fd2-1b08-41af-9515-db1360588be8" + ], + "x-ms-arm-service-request-id": [ + "0c5e69d6-3f84-42e6-855c-c0d00a3acf38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073813Z:ce5d4fd2-1b08-41af-9515-db1360588be8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "01c6900f-21e8-4c47-9c90-091b9bf5cc26" + ], + "x-ms-correlation-request-id": [ + "c5199761-9190-49af-a3e4-28b5b2f92138" + ], + "x-ms-arm-service-request-id": [ + "ece29bc9-2484-45a2-b961-27cd40353a82" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073823Z:c5199761-9190-49af-a3e4-28b5b2f92138" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cabf98cb-6b90-4ff7-bd7f-59414a001cbf" + ], + "x-ms-correlation-request-id": [ + "f1b1d072-7029-4825-af0e-b5490fdf0e6b" + ], + "x-ms-arm-service-request-id": [ + "5145ba79-431d-4df3-986c-7de059898a52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073833Z:f1b1d072-7029-4825-af0e-b5490fdf0e6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "05103d0a-6caa-404f-98e1-0eacf3ed40d1" + ], + "x-ms-correlation-request-id": [ + "9b92ebe1-5fbb-40b8-8c1f-6116d13f1c49" + ], + "x-ms-arm-service-request-id": [ + "cce4cbb2-5b63-4d36-a7d8-71f65827795f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073843Z:9b92ebe1-5fbb-40b8-8c1f-6116d13f1c49" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d95b345-b12a-4a65-8560-592fd9ef7d38" + ], + "x-ms-correlation-request-id": [ + "8a0b05b9-9696-44fd-886c-4f126820e92f" + ], + "x-ms-arm-service-request-id": [ + "61227687-077a-4387-9c54-289f153ed6b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073853Z:8a0b05b9-9696-44fd-886c-4f126820e92f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:38:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7559f0dc-e83f-4b68-bb2f-52fd9472ee85" + ], + "x-ms-correlation-request-id": [ + "7fc28538-c0c9-4f62-863e-8ad1b530e06b" + ], + "x-ms-arm-service-request-id": [ + "a2a5b55f-45fc-4916-b69a-070ea0600bc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073903Z:7fc28538-c0c9-4f62-863e-8ad1b530e06b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "09a11412-42ec-425d-8cf0-e4285213d82c" + ], + "x-ms-correlation-request-id": [ + "ce99c324-850f-4e12-b7df-dc9c5c0fa277" + ], + "x-ms-arm-service-request-id": [ + "0a2adb89-17fa-4e18-8cb7-90e407d0365e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073913Z:ce99c324-850f-4e12-b7df-dc9c5c0fa277" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbeec118-4066-47a7-adf0-746d722786d7" + ], + "x-ms-correlation-request-id": [ + "bffad8c4-1bb8-47c5-9e2b-326c44b28f62" + ], + "x-ms-arm-service-request-id": [ + "60e847f6-677e-482b-a067-2b9a96504674" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073923Z:bffad8c4-1bb8-47c5-9e2b-326c44b28f62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3f60a687-61bb-4b9a-bc75-e8ec6ebae2f7" + ], + "x-ms-correlation-request-id": [ + "367d32fb-ef03-4183-94bd-a14b9a1aa857" + ], + "x-ms-arm-service-request-id": [ + "0e3b35ac-a085-4c8b-a1ba-72c0f63c4754" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073933Z:367d32fb-ef03-4183-94bd-a14b9a1aa857" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "40199710-ab8c-48d2-a112-9e7991885416" + ], + "x-ms-correlation-request-id": [ + "fcaa33d2-35c2-4d7f-a19d-50b4aaa19872" + ], + "x-ms-arm-service-request-id": [ + "4365ce38-d24e-4cf6-9a10-d171ea529c0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073943Z:fcaa33d2-35c2-4d7f-a19d-50b4aaa19872" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c592f1c0-6a25-4c3c-a8cd-2de2a71b9ce3" + ], + "x-ms-correlation-request-id": [ + "5742185d-9861-48cc-8b16-b9131e47ecdb" + ], + "x-ms-arm-service-request-id": [ + "807c9c01-bf02-4614-a05f-3aec9c7ca7d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T073953Z:5742185d-9861-48cc-8b16-b9131e47ecdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:39:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4be9fd07-ab12-4418-a5d6-a2de33575d70" + ], + "x-ms-correlation-request-id": [ + "078ac954-a1b3-4fb1-a1e4-d63fdb689bc6" + ], + "x-ms-arm-service-request-id": [ + "10807c40-99ac-46ca-896b-9b6fa764d571" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074003Z:078ac954-a1b3-4fb1-a1e4-d63fdb689bc6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "836a2796-d02f-4b50-ae3b-2a8162a5c230" + ], + "x-ms-correlation-request-id": [ + "acb0c78f-04e5-43fb-af16-d4a43d2a4f8c" + ], + "x-ms-arm-service-request-id": [ + "b4e59a6e-a1d8-46ba-80e9-dbd250afc0eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074013Z:acb0c78f-04e5-43fb-af16-d4a43d2a4f8c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "927d70c2-4a1c-4ebc-8e2f-521b49e0e31e" + ], + "x-ms-correlation-request-id": [ + "e79db794-7bfc-4482-a3d0-dc0a15862994" + ], + "x-ms-arm-service-request-id": [ + "4b4e4f0a-5523-4664-b4b4-8edf774ab291" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074023Z:e79db794-7bfc-4482-a3d0-dc0a15862994" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:23 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8766509-b86c-4588-8698-6db1e518be35" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + ], + "x-ms-correlation-request-id": [ + "3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074024Z:3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "227" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/azFwInVirtualHub' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + ], + "x-ms-request-id": [ + "98b238fc-e8a3-41de-8888-f5d30c2671df" + ], + "x-ms-correlation-request-id": [ + "2c8202d7-d293-4180-80a7-19ac49c196d3" + ], + "x-ms-arm-service-request-id": [ + "83b82f5f-ec7d-403d-ac7f-8bd6fa769016" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075813Z:2c8202d7-d293-4180-80a7-19ac49c196d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:13 GMT" + ], + "Content-Length": [ + "979" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "516a49ab-0756-40bb-b352-387b2edc066b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + ], + "x-ms-request-id": [ + "c0b1c176-9d83-47ab-9c4e-86918326d3b7" + ], + "x-ms-correlation-request-id": [ + "93c6aa82-3ab4-4e13-b3ed-6b04fef848af" + ], + "x-ms-arm-service-request-id": [ + "a0406f04-c701-4622-8c79-3ad73a512cac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075813Z:93c6aa82-3ab4-4e13-b3ed-6b04fef848af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:13 GMT" + ], + "Content-Length": [ + "979" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4e3a85a-b8fd-4c63-876d-6a564ee4276a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + ], + "x-ms-request-id": [ + "a85d9ba0-9749-44c5-a144-f667e551d089" + ], + "x-ms-correlation-request-id": [ + "7b9089ce-3874-4ec0-91b8-09fee6b92c0f" + ], + "x-ms-arm-service-request-id": [ + "2b865816-0f59-492b-84b2-019c7718a285" + ], + "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:20200615T075813Z:7b9089ce-3874-4ec0-91b8-09fee6b92c0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:12 GMT" + ], + "Content-Length": [ + "979" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"location\": \"westcentralus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07f7d5fb-ddd7-41e7-b67c-eeab3932a754" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "592" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e47ac9b4-487c-4d88-87d2-069989a4e309" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "95dcf97f-2245-4e44-a2b1-572439d5974f" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "3cbaef6c-026b-46b9-bc31-58b86120849a" + ], + "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:20200615T074026Z:95dcf97f-2245-4e44-a2b1-572439d5974f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:26 GMT" + ], + "Content-Length": [ + "793" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"90741178-4a67-4029-a42e-99db4e67c794\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPAddresses\": [],\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ad1ea0db-0df1-4068-b17f-27bbcf542754" + ], + "x-ms-correlation-request-id": [ + "813d43c7-859e-4e54-bde1-9bb8a1a6ccd9" + ], + "x-ms-arm-service-request-id": [ + "46abdca4-8618-4e9d-88f6-258beb3582b7" + ], + "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:20200615T074036Z:813d43c7-859e-4e54-bde1-9bb8a1a6ccd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3494f2ac-4cd9-489f-85f8-2d61d0d0e460" + ], + "x-ms-correlation-request-id": [ + "c6d95243-b404-4a5f-b6b3-61c2011fa5ec" + ], + "x-ms-arm-service-request-id": [ + "2c2a3d36-1c16-4291-9e19-7c796230496a" + ], + "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:20200615T074046Z:c6d95243-b404-4a5f-b6b3-61c2011fa5ec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4bf82cfc-458c-48f1-b56b-c4888b5df721" + ], + "x-ms-correlation-request-id": [ + "543af16a-2020-46c0-a17c-c0704dcabff4" + ], + "x-ms-arm-service-request-id": [ + "b8c3c0df-b768-460d-bb14-12e70c1d93af" + ], + "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:20200615T074056Z:543af16a-2020-46c0-a17c-c0704dcabff4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:40:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2ad36ae8-fcd5-4a25-8117-b5a0f3bb852c" + ], + "x-ms-correlation-request-id": [ + "55ef50de-4ff9-4850-8f42-4df0fb0ad32a" + ], + "x-ms-arm-service-request-id": [ + "e4203da3-33ba-4aec-a464-5bf25c3bc156" + ], + "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:20200615T074106Z:55ef50de-4ff9-4850-8f42-4df0fb0ad32a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ace13c83-5ad5-4294-84c0-234f23f98df7" + ], + "x-ms-correlation-request-id": [ + "e7d09e50-703b-48c5-b761-562f59928878" + ], + "x-ms-arm-service-request-id": [ + "bec99305-84df-4855-87ed-f435a2e1ccbd" + ], + "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:20200615T074116Z:e7d09e50-703b-48c5-b761-562f59928878" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3e7454f8-6d3a-4c48-a585-8e9ed38b2912" + ], + "x-ms-correlation-request-id": [ + "73ac6adb-1a23-458c-a5a6-a3f1fdf45505" + ], + "x-ms-arm-service-request-id": [ + "064a3630-c248-4e17-ab80-5c8de0635237" + ], + "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:20200615T074126Z:73ac6adb-1a23-458c-a5a6-a3f1fdf45505" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "036dacd0-9495-4991-ab12-ebeb85d77673" + ], + "x-ms-correlation-request-id": [ + "11f008b4-a754-4237-8441-ed194f4f75c1" + ], + "x-ms-arm-service-request-id": [ + "ce600dc1-e19a-4283-a7bc-c522dd51c2a6" + ], + "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:20200615T074136Z:11f008b4-a754-4237-8441-ed194f4f75c1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "816c3e23-dcc6-4ee2-8031-d786fee8060e" + ], + "x-ms-correlation-request-id": [ + "d366c096-0e93-41f9-a8c6-396fb5c76419" + ], + "x-ms-arm-service-request-id": [ + "cc2e4064-d4a0-4b1f-a9b8-f353d81e3c77" + ], + "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:20200615T074147Z:d366c096-0e93-41f9-a8c6-396fb5c76419" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8a52b35f-c000-46b0-a8d3-6f5cfd2a8c54" + ], + "x-ms-correlation-request-id": [ + "8a4e280e-72f2-48e2-a0e1-6698c320d812" + ], + "x-ms-arm-service-request-id": [ + "f0a38e8c-d914-44d1-94d1-003fda2c5b0c" + ], + "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:20200615T074157Z:8a4e280e-72f2-48e2-a0e1-6698c320d812" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:41:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "02672486-5435-4f6b-bd9a-a2580bd78cf2" + ], + "x-ms-correlation-request-id": [ + "fd6a9185-205c-421e-af42-dead60aa90de" + ], + "x-ms-arm-service-request-id": [ + "e5cd76ae-b4ec-4b58-967e-15ce420108ec" + ], + "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:20200615T074207Z:fd6a9185-205c-421e-af42-dead60aa90de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c175c37a-803c-45fc-999b-bac05557c6bf" + ], + "x-ms-correlation-request-id": [ + "2bd7f37c-b28d-47cf-8f06-b3be3fd2fde0" + ], + "x-ms-arm-service-request-id": [ + "13588e20-8760-45d2-a2a7-2286ea3ed8b7" + ], + "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:20200615T074217Z:2bd7f37c-b28d-47cf-8f06-b3be3fd2fde0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:16 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "270722e7-ba78-45e9-82b5-390c97bf561b" + ], + "x-ms-correlation-request-id": [ + "01ac9010-be6e-4c14-b737-34bad23c0c8d" + ], + "x-ms-arm-service-request-id": [ + "321cb6ca-25a4-4056-b0ea-ac5e14351ab5" + ], + "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:20200615T074227Z:01ac9010-be6e-4c14-b737-34bad23c0c8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:26 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0c3cf60d-4445-462f-b3b4-026d95d718f2" + ], + "x-ms-correlation-request-id": [ + "d5f75119-529f-4019-be2c-7c48bf4a9a41" + ], + "x-ms-arm-service-request-id": [ + "94acec61-4046-45ea-8572-7b2da5939830" + ], + "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:20200615T074237Z:d5f75119-529f-4019-be2c-7c48bf4a9a41" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:36 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d296ea80-38de-4ac4-96b5-c2134c56122c" + ], + "x-ms-correlation-request-id": [ + "bec140cd-ca06-46e2-8ff0-71cd847d467c" + ], + "x-ms-arm-service-request-id": [ + "0f2cf981-d745-42ef-a4f9-f5d8dbc8c962" + ], + "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:20200615T074247Z:bec140cd-ca06-46e2-8ff0-71cd847d467c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:46 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6b7d8d95-9c9d-4a8a-b68d-ea6c9a2abf1a" + ], + "x-ms-correlation-request-id": [ + "25879c7e-a91d-43d1-9148-f05205c6cae1" + ], + "x-ms-arm-service-request-id": [ + "d5892e81-d6ac-48fa-86c0-0ae89bf9d6e2" + ], + "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:20200615T074257Z:25879c7e-a91d-43d1-9148-f05205c6cae1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:42:56 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ea2df2b9-9b78-4bac-92a0-ecf2340f55f7" + ], + "x-ms-correlation-request-id": [ + "9578e752-42c9-4835-b827-d8153a23e0c3" + ], + "x-ms-arm-service-request-id": [ + "f5da77d8-4736-448d-8d63-b98b56359e12" + ], + "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:20200615T074307Z:9578e752-42c9-4835-b827-d8153a23e0c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b6ba3d9e-d055-49bc-9382-32a08cdff1a2" + ], + "x-ms-correlation-request-id": [ + "cedb5e06-7103-44c1-83c8-6a13b08ee4d7" + ], + "x-ms-arm-service-request-id": [ + "94721e55-3822-44d5-b759-63340150e912" + ], + "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:20200615T074317Z:cedb5e06-7103-44c1-83c8-6a13b08ee4d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "07ea39c8-0bb5-4e60-b842-1c1ec2b08d43" + ], + "x-ms-correlation-request-id": [ + "8863098e-52d5-4938-ab12-72d16e411e48" + ], + "x-ms-arm-service-request-id": [ + "9bb8bd73-b3ce-42f1-9ef0-7009c6e85d3b" + ], + "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:20200615T074327Z:8863098e-52d5-4938-ab12-72d16e411e48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9c624662-647c-4dad-8a56-200fc94d5fcb" + ], + "x-ms-correlation-request-id": [ + "b38e4051-0785-4472-98bd-dc77b1792c12" + ], + "x-ms-arm-service-request-id": [ + "5356d8f2-ddae-436e-94dd-9a76d6282ce9" + ], + "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:20200615T074337Z:b38e4051-0785-4472-98bd-dc77b1792c12" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7eac2035-aa5c-4404-81b4-016562438424" + ], + "x-ms-correlation-request-id": [ + "54c4eb13-eac7-4e80-b35d-feabe1bf654c" + ], + "x-ms-arm-service-request-id": [ + "764a6306-c1ad-4138-8ae9-4cef8243925d" + ], + "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:20200615T074347Z:54c4eb13-eac7-4e80-b35d-feabe1bf654c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57a05ef0-40b8-4934-b2c3-ed1623105bb0" + ], + "x-ms-correlation-request-id": [ + "e10bf340-e488-4417-9a3f-cd5247ff5d66" + ], + "x-ms-arm-service-request-id": [ + "70d6e969-1ae8-4622-ad78-2b75ecf7288f" + ], + "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:20200615T074357Z:e10bf340-e488-4417-9a3f-cd5247ff5d66" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:43:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0d4c844-382f-45f9-90f0-8e1b758d5bec" + ], + "x-ms-correlation-request-id": [ + "f2601946-e963-4605-abe9-e6376e861a3b" + ], + "x-ms-arm-service-request-id": [ + "3ec41708-5251-4d24-a3c2-3b5b27d694be" + ], + "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:20200615T074407Z:f2601946-e963-4605-abe9-e6376e861a3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "074b6300-34a4-4d7a-8523-1696cea9829d" + ], + "x-ms-correlation-request-id": [ + "10f23e5f-bfec-407a-b3e0-8605abe8e43b" + ], + "x-ms-arm-service-request-id": [ + "5240d09a-bdcb-4d15-a1b9-23ef438149b9" + ], + "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:20200615T074417Z:10f23e5f-bfec-407a-b3e0-8605abe8e43b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f32d96c-030e-43b5-9743-a20b1f112a62" + ], + "x-ms-correlation-request-id": [ + "b84007e4-d5a5-48d1-9c84-0c34314dfa85" + ], + "x-ms-arm-service-request-id": [ + "74cf31fc-9264-4e77-8844-aa3198ad91ec" + ], + "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:20200615T074427Z:b84007e4-d5a5-48d1-9c84-0c34314dfa85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f95bfbef-23cd-49ec-91fc-402668e9e259" + ], + "x-ms-correlation-request-id": [ + "a4784498-e8b8-43a1-8636-74e8051c2ef0" + ], + "x-ms-arm-service-request-id": [ + "2a04ad4f-8a97-4f8e-a1d4-d4165d4dfa6f" + ], + "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:20200615T074438Z:a4784498-e8b8-43a1-8636-74e8051c2ef0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dac3f815-6a52-4f75-8692-17d2a3a1a42e" + ], + "x-ms-correlation-request-id": [ + "c6c639b0-03d0-416a-92c6-805a38962061" + ], + "x-ms-arm-service-request-id": [ + "89666ab7-a690-46ee-a760-2df942a6c2df" + ], + "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:20200615T074448Z:c6c639b0-03d0-416a-92c6-805a38962061" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c94dce66-b699-48d6-9ed6-74f87cd2e913" + ], + "x-ms-correlation-request-id": [ + "eaa0c2ca-cf0e-42d1-a054-290f381a6637" + ], + "x-ms-arm-service-request-id": [ + "afe74429-abe7-4ad3-8a1a-c743a25fde0f" + ], + "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:20200615T074458Z:eaa0c2ca-cf0e-42d1-a054-290f381a6637" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:44:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8abaa912-4725-4bf3-9887-7e341039a97e" + ], + "x-ms-correlation-request-id": [ + "c298cd6a-a872-4e84-98ff-5c9053eaef26" + ], + "x-ms-arm-service-request-id": [ + "0b709041-f8c5-497c-a3d5-1afef43c3511" + ], + "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:20200615T074508Z:c298cd6a-a872-4e84-98ff-5c9053eaef26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f9d765de-2e2c-4b1c-bf53-8f99f4503fa0" + ], + "x-ms-correlation-request-id": [ + "7a02e692-2f0c-4083-9c66-6d91b9f495e6" + ], + "x-ms-arm-service-request-id": [ + "1442c8e0-0a32-4156-9c58-558c7f1fe130" + ], + "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:20200615T074518Z:7a02e692-2f0c-4083-9c66-6d91b9f495e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4616d21d-8b5f-4c9e-ab5c-3a6dddcacdf8" + ], + "x-ms-correlation-request-id": [ + "309beae3-d34d-4dac-b155-8043965e7362" + ], + "x-ms-arm-service-request-id": [ + "c814a162-91d6-4e01-a4b2-7c4ea32d06ab" + ], + "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:20200615T074528Z:309beae3-d34d-4dac-b155-8043965e7362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "14c6d1a7-3b9f-4cba-86f2-d80521dc71e6" + ], + "x-ms-correlation-request-id": [ + "59d1a4e1-8e3d-4d64-ac4e-d46c73ef71dc" + ], + "x-ms-arm-service-request-id": [ + "c598f6cd-3e65-40a1-8786-cc416cf701e1" + ], + "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:20200615T074538Z:59d1a4e1-8e3d-4d64-ac4e-d46c73ef71dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f854de6e-8848-4189-b18b-b33091ce40f2" + ], + "x-ms-correlation-request-id": [ + "0b4c1716-9c0d-49d1-bb99-94aebe08095c" + ], + "x-ms-arm-service-request-id": [ + "d8571608-a69b-4b6b-9716-2fc647182845" + ], + "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:20200615T074548Z:0b4c1716-9c0d-49d1-bb99-94aebe08095c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "34f0d764-d114-434b-9283-5b04f06121ac" + ], + "x-ms-correlation-request-id": [ + "c6f176ef-0b20-4dc2-905a-26d33262ce10" + ], + "x-ms-arm-service-request-id": [ + "450c6813-843c-442d-86c7-3ec6b6155fa0" + ], + "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:20200615T074558Z:c6f176ef-0b20-4dc2-905a-26d33262ce10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:45:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0425da74-bf92-46cc-a496-a5aef9ca0f3c" + ], + "x-ms-correlation-request-id": [ + "335e11a8-5db1-42f6-a286-5a269ac924fb" + ], + "x-ms-arm-service-request-id": [ + "49be795f-be7b-427b-b1cb-3b5b18de9297" + ], + "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:20200615T074608Z:335e11a8-5db1-42f6-a286-5a269ac924fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cdbb53c1-8b70-49a4-bb36-c16d62e7d893" + ], + "x-ms-correlation-request-id": [ + "9a0c2a3e-3463-44dd-863e-c826cc498233" + ], + "x-ms-arm-service-request-id": [ + "3c5940c0-8275-4570-958f-2eb09a8d462e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074618Z:9a0c2a3e-3463-44dd-863e-c826cc498233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d639394f-32bc-47c3-b34c-e1f744afb3bf" + ], + "x-ms-correlation-request-id": [ + "59830cc3-78f0-40a6-b146-6bc8b36c73dc" + ], + "x-ms-arm-service-request-id": [ + "59087773-483c-4808-b07e-b565a841a6eb" + ], + "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:20200615T074628Z:59830cc3-78f0-40a6-b146-6bc8b36c73dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "812a1f85-afa0-4ce4-a759-dbcfe7c417d1" + ], + "x-ms-correlation-request-id": [ + "4733f9ad-e1cf-4721-8a3c-a6b919642e57" + ], + "x-ms-arm-service-request-id": [ + "b2337d7e-0930-43d7-81a4-aae984d130d6" + ], + "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:20200615T074638Z:4733f9ad-e1cf-4721-8a3c-a6b919642e57" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c80f050f-d59f-486e-a207-23965c00f9e8" + ], + "x-ms-correlation-request-id": [ + "8f157c7b-3f63-4d87-9a69-8e0505d11780" + ], + "x-ms-arm-service-request-id": [ + "d0e74736-252e-4c44-8be6-35c11da79e72" + ], + "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:20200615T074648Z:8f157c7b-3f63-4d87-9a69-8e0505d11780" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d85072d0-15e4-4e6b-922e-48272dcb4948" + ], + "x-ms-correlation-request-id": [ + "0d3aa2f6-ca99-42dc-91d2-7b38b5f107a2" + ], + "x-ms-arm-service-request-id": [ + "405fb37f-e223-42cf-9e73-4b521b4c791e" + ], + "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:20200615T074659Z:0d3aa2f6-ca99-42dc-91d2-7b38b5f107a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:46:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57bd965e-bfe5-4d51-82d9-b9c5d50e321f" + ], + "x-ms-correlation-request-id": [ + "a8b56954-26b2-4791-9b86-ecb91e524e95" + ], + "x-ms-arm-service-request-id": [ + "8d612d06-e55a-41e0-87d7-ccd709163331" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074709Z:a8b56954-26b2-4791-9b86-ecb91e524e95" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "deda99a3-b4bd-4f4d-ab70-d69ec70f3505" + ], + "x-ms-correlation-request-id": [ + "55258186-d935-47e7-9d91-8e622752a32d" + ], + "x-ms-arm-service-request-id": [ + "226cbf98-54f6-4157-b3c9-2d5aa8024534" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074719Z:55258186-d935-47e7-9d91-8e622752a32d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "841a4012-bb6c-44de-a290-515018129fe3" + ], + "x-ms-correlation-request-id": [ + "83874a1c-7be7-4910-9fea-a236e33be6d7" + ], + "x-ms-arm-service-request-id": [ + "1830e516-f27b-4f19-a6d4-277e09db2bc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074729Z:83874a1c-7be7-4910-9fea-a236e33be6d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "df4e6680-13dc-43fb-82d5-ce0345f1d0ea" + ], + "x-ms-correlation-request-id": [ + "4c2f2168-1e74-4e66-b600-b3607de00580" + ], + "x-ms-arm-service-request-id": [ + "867423a9-d5f0-428b-89f7-1d8b8a40f426" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074739Z:4c2f2168-1e74-4e66-b600-b3607de00580" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbb4896c-e1ab-4df6-a10f-496ab7ff5629" + ], + "x-ms-correlation-request-id": [ + "11c18fdc-2e80-440e-851e-6b2b05bf85dc" + ], + "x-ms-arm-service-request-id": [ + "0cf81e51-242c-43ac-879a-17710a4bcdfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074749Z:11c18fdc-2e80-440e-851e-6b2b05bf85dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "60fa42de-3939-488e-b3e6-9e3ccde489a7" + ], + "x-ms-correlation-request-id": [ + "207c12b6-6eb5-4970-9a3c-0c55a654cdb5" + ], + "x-ms-arm-service-request-id": [ + "f1c45a99-8ece-4e41-a3f4-e2b4be077c01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074759Z:207c12b6-6eb5-4970-9a3c-0c55a654cdb5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:47:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f0b7613f-6fdc-4487-934e-05a0fc276a2a" + ], + "x-ms-correlation-request-id": [ + "b70ef13c-a3de-4047-bd9a-67f456101cc5" + ], + "x-ms-arm-service-request-id": [ + "a0b3b30c-b9cc-4b5d-8c5d-33ac3b9c8f5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074809Z:b70ef13c-a3de-4047-bd9a-67f456101cc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "55682dc4-155e-4003-9b92-72ff48848299" + ], + "x-ms-correlation-request-id": [ + "5a007c17-cfee-4785-9aea-a643e60eff78" + ], + "x-ms-arm-service-request-id": [ + "c79608d4-9a00-404b-b569-4c787e6c0b51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074819Z:5a007c17-cfee-4785-9aea-a643e60eff78" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7cd2b1a3-02ee-423a-b7b0-86c6d94523d3" + ], + "x-ms-correlation-request-id": [ + "707a68bf-a6c2-471c-a984-af680983b2f4" + ], + "x-ms-arm-service-request-id": [ + "bd6a4dd1-955d-4a10-8524-bdf839109838" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074829Z:707a68bf-a6c2-471c-a984-af680983b2f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e838f37e-49ac-4ce7-8972-8203538ac5ab" + ], + "x-ms-correlation-request-id": [ + "f4356acc-db43-4b30-8a36-07fff4652899" + ], + "x-ms-arm-service-request-id": [ + "c222502c-4855-4263-8cb6-4549cd9e9f48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074839Z:f4356acc-db43-4b30-8a36-07fff4652899" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6c7cdff-65ad-4203-8891-9561a1e1b217" + ], + "x-ms-correlation-request-id": [ + "6528eab2-b69f-457e-bb1b-df97f81f3527" + ], + "x-ms-arm-service-request-id": [ + "8b1bf8a2-c63f-495c-a257-48d7138e0439" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074849Z:6528eab2-b69f-457e-bb1b-df97f81f3527" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2876d2e3-5060-4f91-9534-798fa0ca81b5" + ], + "x-ms-correlation-request-id": [ + "f6255eda-0d6c-41b7-9e5e-9c6dafe13c46" + ], + "x-ms-arm-service-request-id": [ + "0a52b53c-bae4-4579-9efa-fe0c2ec617b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074859Z:f6255eda-0d6c-41b7-9e5e-9c6dafe13c46" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:48:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "daea5e06-59d5-4213-80f0-ae107a47e349" + ], + "x-ms-correlation-request-id": [ + "66e32642-00bd-4330-998f-80352cd6723d" + ], + "x-ms-arm-service-request-id": [ + "28ecb231-c62a-4424-9d10-d25852d8a1ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074909Z:66e32642-00bd-4330-998f-80352cd6723d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c4836677-dbe7-4cf3-bf76-97c909c1f949" + ], + "x-ms-correlation-request-id": [ + "e6e02413-64cb-4ae2-ba36-c8cfae5135aa" + ], + "x-ms-arm-service-request-id": [ + "7ce44306-b39d-4564-9498-715f0cbb971a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074919Z:e6e02413-64cb-4ae2-ba36-c8cfae5135aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fcae4103-5d3e-40f4-a31f-776f508e3f46" + ], + "x-ms-correlation-request-id": [ + "f3f4db81-c8ae-46aa-8bb9-4b51b26a06a4" + ], + "x-ms-arm-service-request-id": [ + "674da18c-918d-44cd-8337-a423ba8854a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074929Z:f3f4db81-c8ae-46aa-8bb9-4b51b26a06a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:29 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "faa6fa02-7b94-462c-968c-f04d2867eae3" + ], + "x-ms-correlation-request-id": [ + "db3c80ff-f00b-47c4-a2c5-57a113eee296" + ], + "x-ms-arm-service-request-id": [ + "b92dc6fa-956e-4914-89fc-7368814e4361" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074940Z:db3c80ff-f00b-47c4-a2c5-57a113eee296" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a0e09818-c655-4260-befe-1f9a3925cda8" + ], + "x-ms-correlation-request-id": [ + "761bafd4-6894-4c6d-a3ac-46c7de62b333" + ], + "x-ms-arm-service-request-id": [ + "b5c1be35-d4e0-4eb6-a5b8-c51ba7763df1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T074950Z:761bafd4-6894-4c6d-a3ac-46c7de62b333" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "31bef430-d7ff-42f0-af71-d521646ea055" + ], + "x-ms-correlation-request-id": [ + "0296f4e2-81a5-4f93-a153-596ce81e2697" + ], + "x-ms-arm-service-request-id": [ + "115f3d14-aacc-4d15-b66f-a344f732e639" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075000Z:0296f4e2-81a5-4f93-a153-596ce81e2697" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:49:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4be1e1a2-e7a5-49b3-8bec-60a46ab62c66" + ], + "x-ms-correlation-request-id": [ + "adf21829-8561-4b3c-aac7-bec60e4a0e65" + ], + "x-ms-arm-service-request-id": [ + "10e6bb68-26a3-4c5c-a7e3-e3734d90819c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075010Z:adf21829-8561-4b3c-aac7-bec60e4a0e65" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:50:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a40866aa-2430-4508-a291-8e14eb41d139" + ], + "x-ms-correlation-request-id": [ + "45cf25af-bb9b-474a-92b9-07b873b755c5" + ], + "x-ms-arm-service-request-id": [ + "6df8e7ab-a615-4581-ab25-feea5d401cbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075020Z:45cf25af-bb9b-474a-92b9-07b873b755c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:50:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "75792747-83f6-4e14-8b6f-a8e6935b8db2" + ], + "x-ms-correlation-request-id": [ + "732f4272-ed0a-40d6-a692-7c5e3229a3a5" + ], + "x-ms-arm-service-request-id": [ + "38badfcc-6477-49a8-8575-1bc653fe3f38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075030Z:732f4272-ed0a-40d6-a692-7c5e3229a3a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:50:30 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5e85e5b2-421f-460e-82d5-9af41810ad7a" + ], + "x-ms-correlation-request-id": [ + "93d2c95b-4437-48e8-8572-b1ca2b7dbddc" + ], + "x-ms-arm-service-request-id": [ + "37d8edd9-0edb-4850-b09f-83a14d42355b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075040Z:93d2c95b-4437-48e8-8572-b1ca2b7dbddc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:50:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "45c41b45-8edf-4d38-bd6e-d8632bdfe9a2" + ], + "x-ms-correlation-request-id": [ + "0404b34d-6c41-4a00-9a7c-5f9362f857b5" + ], + "x-ms-arm-service-request-id": [ + "6e454532-5ae0-4f20-9e0e-1a340bfa6b15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075050Z:0404b34d-6c41-4a00-9a7c-5f9362f857b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:50:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e12997d3-b2fd-483a-8f59-7bace6f1cc85" + ], + "x-ms-correlation-request-id": [ + "f96749a5-9afe-4b0b-a411-2df3870f5e8a" + ], + "x-ms-arm-service-request-id": [ + "68970abe-c6ec-418b-a0d2-69a9de2d6cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075100Z:f96749a5-9afe-4b0b-a411-2df3870f5e8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6a8c77c0-5e7d-4683-9cb9-9efbee026963" + ], + "x-ms-correlation-request-id": [ + "fd5a6129-dd72-4248-92a6-b1d1b76c9412" + ], + "x-ms-arm-service-request-id": [ + "5d817f0a-d60a-4022-b4a2-2a206a5eeee7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075110Z:fd5a6129-dd72-4248-92a6-b1d1b76c9412" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ddc27dfb-8ec4-4674-adff-f26c51a1be39" + ], + "x-ms-correlation-request-id": [ + "6dab61b2-72c8-414f-9b9e-11e0ad6c62d4" + ], + "x-ms-arm-service-request-id": [ + "c132a1d2-0e62-4a38-95ae-d63ce8684394" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075120Z:6dab61b2-72c8-414f-9b9e-11e0ad6c62d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5ef1503c-ff11-4c98-8498-19f3d8f88ace" + ], + "x-ms-correlation-request-id": [ + "d0d475ae-5819-41da-b46b-3be9a1082ff5" + ], + "x-ms-arm-service-request-id": [ + "7061999d-8db0-4d7f-9937-f894f71fd01d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075130Z:d0d475ae-5819-41da-b46b-3be9a1082ff5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:30 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8d7d76ca-7c27-4222-8183-878234ba8556" + ], + "x-ms-correlation-request-id": [ + "d225e575-c689-4730-8cae-f3d4f088481d" + ], + "x-ms-arm-service-request-id": [ + "fea91e62-3195-4bba-b46e-16aae0ae6e14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075140Z:d225e575-c689-4730-8cae-f3d4f088481d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e317f439-ef84-4929-a336-d03dc9ebb736" + ], + "x-ms-correlation-request-id": [ + "2e567853-b523-4ffd-98f2-1639f5901711" + ], + "x-ms-arm-service-request-id": [ + "56972d79-3f46-4f08-9a94-e7aa5171c727" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075150Z:2e567853-b523-4ffd-98f2-1639f5901711" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:51:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b5e1aa16-f236-4297-93a5-b009109090cc" + ], + "x-ms-correlation-request-id": [ + "2dab36a2-f096-4408-98e1-5762a2c33e2a" + ], + "x-ms-arm-service-request-id": [ + "0fda4bbd-aa50-4386-9b86-9fbbe4bcacb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075200Z:2dab36a2-f096-4408-98e1-5762a2c33e2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ebd90b91-4a18-4c03-81f9-c77041a1e142" + ], + "x-ms-correlation-request-id": [ + "2fac67f4-131d-4465-ac81-20c082d8bd76" + ], + "x-ms-arm-service-request-id": [ + "6f4e480d-1233-43e7-b993-963fbc490553" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075210Z:2fac67f4-131d-4465-ac81-20c082d8bd76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0ae03c33-602d-44f1-9a4d-5083e7c209db" + ], + "x-ms-correlation-request-id": [ + "6530e9a3-e027-4651-b8cd-4f91884d7941" + ], + "x-ms-arm-service-request-id": [ + "e15662ac-fdb7-461e-aa44-4d193a92f4e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075221Z:6530e9a3-e027-4651-b8cd-4f91884d7941" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:21 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d017a726-6ebd-4b79-81d2-bf9ade255e3c" + ], + "x-ms-correlation-request-id": [ + "d3378150-363e-4981-8b77-2e7aef067c69" + ], + "x-ms-arm-service-request-id": [ + "c702f853-6e6c-4d43-a228-fdf9f5033dc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075231Z:d3378150-363e-4981-8b77-2e7aef067c69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9f4e0a8c-da28-48e8-b343-ed270f307254" + ], + "x-ms-correlation-request-id": [ + "78033b95-8b45-4286-8cc3-16baa1f4839b" + ], + "x-ms-arm-service-request-id": [ + "a4194314-c759-4e9a-91b1-18e9fc543847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075241Z:78033b95-8b45-4286-8cc3-16baa1f4839b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "76a8596d-9223-4c05-ad13-c5587acf35ad" + ], + "x-ms-correlation-request-id": [ + "c3544a57-d1e5-426b-96be-a2f089e01914" + ], + "x-ms-arm-service-request-id": [ + "088353cb-27bb-43fb-9aa4-87713e704025" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075251Z:c3544a57-d1e5-426b-96be-a2f089e01914" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:52:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f16f6288-e593-4902-8102-f4051efad9b5" + ], + "x-ms-correlation-request-id": [ + "dca0b3ae-a254-44f7-9152-8165c7068bb2" + ], + "x-ms-arm-service-request-id": [ + "875e0ed1-dc92-4cde-8b82-7faa079710e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075301Z:dca0b3ae-a254-44f7-9152-8165c7068bb2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "822e568f-20d1-420b-9a0e-751882953963" + ], + "x-ms-correlation-request-id": [ + "fb9b786e-5a16-4a0c-9d47-3797f6ac39b6" + ], + "x-ms-arm-service-request-id": [ + "3910a73e-e97a-4cbb-88ed-267de2ef264d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075311Z:fb9b786e-5a16-4a0c-9d47-3797f6ac39b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d58c72c0-69cb-4fec-913c-1929e8fa9c09" + ], + "x-ms-correlation-request-id": [ + "4dd47c9e-9516-4e33-b683-d1f8ccf63133" + ], + "x-ms-arm-service-request-id": [ + "204a4e24-530b-4a3d-a96f-cd8bcdd7ea23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075321Z:4dd47c9e-9516-4e33-b683-d1f8ccf63133" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "83732262-d149-40e1-925b-b8a717157f8e" + ], + "x-ms-correlation-request-id": [ + "94bf7079-106a-4715-90c7-8b581e80bbbe" + ], + "x-ms-arm-service-request-id": [ + "c9c54f7d-78c7-4ec9-b55d-fda7953c1818" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075331Z:94bf7079-106a-4715-90c7-8b581e80bbbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:30 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3bf6d7a7-5405-49e2-a39f-cf351150c4b6" + ], + "x-ms-correlation-request-id": [ + "25f4b4e0-b3c9-40a7-86fa-2a00ec2d7d28" + ], + "x-ms-arm-service-request-id": [ + "833d34be-5b48-450a-ba1e-2106f8074a05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075341Z:25f4b4e0-b3c9-40a7-86fa-2a00ec2d7d28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e7c91c8-2c45-40b0-bbfb-c5378af023f9" + ], + "x-ms-correlation-request-id": [ + "c537b522-bf83-4b92-bf08-02449257b792" + ], + "x-ms-arm-service-request-id": [ + "0e6b8b7f-c5ee-4ebf-ab13-d56d11acf615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075351Z:c537b522-bf83-4b92-bf08-02449257b792" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:53:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a2410e50-51e5-4609-84f5-6ec9ac0a6527" + ], + "x-ms-correlation-request-id": [ + "792a5ab2-c9db-4d60-a17e-02f9bdfd5c43" + ], + "x-ms-arm-service-request-id": [ + "442130f9-bc17-4b04-9f2a-9863e8c6b3df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075401Z:792a5ab2-c9db-4d60-a17e-02f9bdfd5c43" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d35bc498-efae-4f32-ac59-0831d1dd2525" + ], + "x-ms-correlation-request-id": [ + "bcb9cd0d-ecd8-4127-9835-b1a4a21b1706" + ], + "x-ms-arm-service-request-id": [ + "fd54d826-2709-4a8c-b2bc-e350cb7cff83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075411Z:bcb9cd0d-ecd8-4127-9835-b1a4a21b1706" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0e868db-523d-422b-8e83-6766d212080f" + ], + "x-ms-correlation-request-id": [ + "f892bd5e-98f0-4ed7-b7b5-d54085427248" + ], + "x-ms-arm-service-request-id": [ + "8a0bed51-74b3-4bd0-807c-4e378414a81d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075421Z:f892bd5e-98f0-4ed7-b7b5-d54085427248" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:21 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "71d91e02-c095-42b9-ad77-8be8ea293c71" + ], + "x-ms-correlation-request-id": [ + "a4c6a38f-2cff-4b51-9321-c1466f89b302" + ], + "x-ms-arm-service-request-id": [ + "51ea12e0-a842-4575-8598-348c52b9839d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075431Z:a4c6a38f-2cff-4b51-9321-c1466f89b302" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c0e8415-f808-474e-ad3b-52280b3fb99a" + ], + "x-ms-correlation-request-id": [ + "04654f82-8b17-4695-a224-f108f0e42fde" + ], + "x-ms-arm-service-request-id": [ + "1f476b52-7f90-4a66-ada7-58f2cc262f26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075441Z:04654f82-8b17-4695-a224-f108f0e42fde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d39b018f-0407-411e-8004-0a7aaf2d4e20" + ], + "x-ms-correlation-request-id": [ + "9ffe930e-71dd-42fc-85d9-f1803fa00eeb" + ], + "x-ms-arm-service-request-id": [ + "db2308d2-a455-4f7d-be8a-a38f46c87a1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075452Z:9ffe930e-71dd-42fc-85d9-f1803fa00eeb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:54:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f8e715d8-78e0-42ea-94bf-bedeeda948a1" + ], + "x-ms-correlation-request-id": [ + "05359405-a851-4c65-ba01-7ce643f9fe4a" + ], + "x-ms-arm-service-request-id": [ + "53401cb4-d816-4cf6-b1a8-643a1b0f3924" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075502Z:05359405-a851-4c65-ba01-7ce643f9fe4a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:01 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0d6dd7f1-5632-4d95-8c85-1e57bd365575" + ], + "x-ms-correlation-request-id": [ + "cf2f7792-aec9-477e-a48e-e605112915a3" + ], + "x-ms-arm-service-request-id": [ + "13f74d1e-c8a7-4da7-a487-219e83cfd08c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075512Z:cf2f7792-aec9-477e-a48e-e605112915a3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "135d25a3-65b8-4f14-a5cf-6330b58334d4" + ], + "x-ms-correlation-request-id": [ + "03c3b136-f438-4ecf-a372-92be0c1f7743" + ], + "x-ms-arm-service-request-id": [ + "3ac6d655-f1a6-4139-b1d3-4dfb1849061e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075522Z:03c3b136-f438-4ecf-a372-92be0c1f7743" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:21 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e7cdef63-5983-459b-bf10-4a24a68a3fc4" + ], + "x-ms-correlation-request-id": [ + "13df4985-788b-4ac5-b35a-9e397c991051" + ], + "x-ms-arm-service-request-id": [ + "68ab1fe7-3ee8-4396-b0af-015376e72e44" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075532Z:13df4985-788b-4ac5-b35a-9e397c991051" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "459026b7-c4da-48b5-a8bd-a4ce595ad2a1" + ], + "x-ms-correlation-request-id": [ + "d2ff15ee-4331-4471-b87f-dead25b121b3" + ], + "x-ms-arm-service-request-id": [ + "25e74f40-b876-403f-ad08-166688fdc51e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075542Z:d2ff15ee-4331-4471-b87f-dead25b121b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7f0bac0c-b5da-464c-ab61-115de1e3ab4a" + ], + "x-ms-correlation-request-id": [ + "845a43df-7836-4987-b95a-451278d4a03c" + ], + "x-ms-arm-service-request-id": [ + "342d600e-ab2c-4deb-8e8c-ca175614a35f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075552Z:845a43df-7836-4987-b95a-451278d4a03c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:55:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa292a98-0cce-44aa-b507-4f22116fd96a" + ], + "x-ms-correlation-request-id": [ + "2ea0a8a5-ff08-4124-9e1c-3e2944352951" + ], + "x-ms-arm-service-request-id": [ + "5851aee4-4b9e-4672-a02d-250ca18bb106" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075602Z:2ea0a8a5-ff08-4124-9e1c-3e2944352951" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "36ceeeec-e582-4fc6-90b0-063933f22b89" + ], + "x-ms-correlation-request-id": [ + "4b85b83c-92b6-4e73-b3a0-d30b91e09cca" + ], + "x-ms-arm-service-request-id": [ + "5f9c990e-89ac-4c4c-864c-1cf42d03fdeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075612Z:4b85b83c-92b6-4e73-b3a0-d30b91e09cca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ff5d9ca2-f65e-456e-86dc-d02eb04d5479" + ], + "x-ms-correlation-request-id": [ + "f1fa5b12-7bcf-4f0b-acc3-6f21c1e5f240" + ], + "x-ms-arm-service-request-id": [ + "1829c72a-0f70-4271-9feb-ed95165b87c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075622Z:f1fa5b12-7bcf-4f0b-acc3-6f21c1e5f240" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4874c7c2-adfe-4a19-ae4f-47e140e706e4" + ], + "x-ms-correlation-request-id": [ + "9a258b5d-f5f7-4df2-b6cb-f8be5731939a" + ], + "x-ms-arm-service-request-id": [ + "4c9cdc21-98c8-4f58-93ec-5491e715a261" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075632Z:9a258b5d-f5f7-4df2-b6cb-f8be5731939a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "850b6036-6ec7-43da-a09c-12018bcdfe98" + ], + "x-ms-correlation-request-id": [ + "5fb1dc2a-4ffb-4556-a1aa-709d2d0ed614" + ], + "x-ms-arm-service-request-id": [ + "45409eca-4bd1-4dd5-9413-8b83c531d472" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075642Z:5fb1dc2a-4ffb-4556-a1aa-709d2d0ed614" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "748d4f81-4d5e-4454-bcc3-a20945d8afbe" + ], + "x-ms-correlation-request-id": [ + "97ba1b15-94a2-4dbf-98e7-99581094493a" + ], + "x-ms-arm-service-request-id": [ + "63164bab-140e-4d2e-8dd4-b3ca75ce8b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075652Z:97ba1b15-94a2-4dbf-98e7-99581094493a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:56:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7c8bd02f-3564-48ab-a3a7-5b6a69a42df1" + ], + "x-ms-correlation-request-id": [ + "6fa22337-24a7-49d9-9adb-7aefaf246122" + ], + "x-ms-arm-service-request-id": [ + "d17accd0-eb30-48cf-99e1-bb4634221539" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075702Z:6fa22337-24a7-49d9-9adb-7aefaf246122" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a2e43c51-44c5-485d-8258-5774242800c1" + ], + "x-ms-correlation-request-id": [ + "a8b77f64-4f0e-4373-beef-c68efb484ac8" + ], + "x-ms-arm-service-request-id": [ + "f44cd434-08d1-46dc-82fc-93ef76f556f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075712Z:a8b77f64-4f0e-4373-beef-c68efb484ac8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1d47b5c0-89bb-488c-a54a-11d8b0afe9a6" + ], + "x-ms-correlation-request-id": [ + "fd1c98b7-54b3-4d7b-a325-cb2948dd23ee" + ], + "x-ms-arm-service-request-id": [ + "8c79a8e2-458a-4b57-8575-72fcf90f3615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075722Z:fd1c98b7-54b3-4d7b-a325-cb2948dd23ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ba8e0a9d-8db1-4fb3-87b4-288a3cbcff93" + ], + "x-ms-correlation-request-id": [ + "1039c168-c517-412d-a218-87b5e1a02d19" + ], + "x-ms-arm-service-request-id": [ + "07b5a106-19e4-41fc-bffc-94563449d07d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075733Z:1039c168-c517-412d-a218-87b5e1a02d19" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c4a15f2d-74f4-40c1-afff-c843adf56f34" + ], + "x-ms-correlation-request-id": [ + "53b4d27d-7acd-4b7b-933e-6b2c897780ff" + ], + "x-ms-arm-service-request-id": [ + "f3f4386c-3be6-48a4-a04b-5e17fc2025ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075743Z:53b4d27d-7acd-4b7b-933e-6b2c897780ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8f09235b-a272-4c10-95e5-f046153c5934" + ], + "x-ms-correlation-request-id": [ + "cd5da741-bd49-43b5-9e24-2681aeb48092" + ], + "x-ms-arm-service-request-id": [ + "d10e2e76-4864-4ab4-8f79-ffdaea9b15a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075753Z:cd5da741-bd49-43b5-9e24-2681aeb48092" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:57:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2f2e267d-7df9-4be2-b762-9a4c00cc73c0" + ], + "x-ms-correlation-request-id": [ + "d8c61d57-efe3-4aef-b1d5-e2902d1127cf" + ], + "x-ms-arm-service-request-id": [ + "030bb905-bdd6-4bca-9e3c-24fcc890a345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075803Z:d8c61d57-efe3-4aef-b1d5-e2902d1127cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "498aba8c-6abb-459c-8763-ef62192d11a2" + ], + "x-ms-correlation-request-id": [ + "a002f4d9-fac2-4b36-a8ce-73792cc1a763" + ], + "x-ms-arm-service-request-id": [ + "5461832c-f591-416e-8320-f54c0b01af60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T075813Z:a002f4d9-fac2-4b36-a8ce-73792cc1a763" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:13 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16015b21-8c38-42d5-885a-d45af9e24f5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5fb6e57d-4fd8-4bea-830c-b6d22f6a8fba" + ], + "x-ms-correlation-request-id": [ + "87e0cafc-8ffe-4beb-95b1-4a62fd826934" + ], + "x-ms-arm-service-request-id": [ + "c9ee8ba1-0787-4ec1-b436-0c50abc49c90" + ], + "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:20200615T075813Z:87e0cafc-8ffe-4beb-95b1-4a62fd826934" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:13 GMT" + ], + "Content-Length": [ + "259" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + ], + "x-ms-request-id": [ + "24c5e20d-2d58-4e80-a11d-f3ed2978fde5" + ], + "x-ms-correlation-request-id": [ + "7d8b1dae-242a-4da4-bbb2-e5742285f907" + ], + "x-ms-arm-service-request-id": [ + "7aa3a1d9-aa58-405f-967a-d937c7f679f9" + ], + "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:20200615T075835Z:7d8b1dae-242a-4da4-bbb2-e5742285f907" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:35 GMT" + ], + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f936c37-e88a-4847-a82c-3a34a712c11c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + ], + "x-ms-request-id": [ + "f83f8fc3-2f9b-47b7-b873-5ea800c79158" + ], + "x-ms-correlation-request-id": [ + "7018ad78-57e8-42b8-8734-f76b11f8809a" + ], + "x-ms-arm-service-request-id": [ + "3c86a068-b5fe-4c13-ade9-b52a6995a1eb" + ], + "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:20200615T075836Z:7018ad78-57e8-42b8-8734-f76b11f8809a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:35 GMT" + ], + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "299aebe5-a72c-49c1-8a34-7d6caa42ee6f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + ], + "x-ms-request-id": [ + "939b6668-4049-4785-878a-87783c0e9885" + ], + "x-ms-correlation-request-id": [ + "0e021f67-9cf5-40bc-a5c7-ab841d2dc50b" + ], + "x-ms-arm-service-request-id": [ + "8a46dac1-05a9-4e8a-ab75-3f5766c17a42" + ], + "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:20200615T075836Z:0e021f67-9cf5-40bc-a5c7-ab841d2dc50b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:35 GMT" + ], + "Content-Length": [ + "894" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4dd85415-2719-4217-8e05-db60ad6eab10\"" + ], + "x-ms-request-id": [ + "9e18019e-b2bd-49de-9435-7ecf6b1bb8cf" + ], + "x-ms-correlation-request-id": [ + "41b710ef-7269-4c2b-a93e-ec95ad227c67" + ], + "x-ms-arm-service-request-id": [ + "0788527f-0337-49a2-ae0d-ce67d8cfc98d" + ], + "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:20200615T075847Z:41b710ef-7269-4c2b-a93e-ec95ad227c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:47 GMT" + ], + "Content-Length": [ + "865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3098c087-739e-4720-8f29-baf98df71bc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"4dd85415-2719-4217-8e05-db60ad6eab10\"" + ], + "x-ms-request-id": [ + "e051b274-3eb2-4ba9-bb40-0d7c6dac04d1" + ], + "x-ms-correlation-request-id": [ + "018ffc7d-0918-4861-b34f-bc07da12485e" + ], + "x-ms-arm-service-request-id": [ + "10e13682-d933-4371-a48f-a22a465f511c" + ], + "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:20200615T075847Z:018ffc7d-0918-4861-b34f-bc07da12485e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:46 GMT" + ], + "Content-Length": [ + "865" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "072f1528-9ffe-4d3f-8b40-cf790bce5797" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "505" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "64aa737b-606f-47c8-b87e-d74f3c0d6ed0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "9b2d40a3-0774-414e-b289-fa2dd4d11781" + ], + "x-ms-arm-service-request-id": [ + "cb248867-25b3-476d-9111-f5a632385f3f" + ], + "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:20200615T075815Z:9b2d40a3-0774-414e-b289-fa2dd4d11781" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:15 GMT" + ], + "Content-Length": [ + "893" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"9e757076-143a-454c-976f-247fe60745a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5b2f5e2-d946-4f1b-a4c4-dd57d37649a6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "641" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "afdfed9e-c624-476e-bcd9-4ab18642ea71" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/afdfed9e-c624-476e-bcd9-4ab18642ea71?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "e1705b84-5793-4b8f-8781-5f82178a50f8" + ], + "x-ms-arm-service-request-id": [ + "430b3c3c-f4f6-4a85-95a8-3f381470f8d1" + ], + "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:20200615T075836Z:e1705b84-5793-4b8f-8781-5f82178a50f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:35 GMT" + ], + "Content-Length": [ + "864" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"1693c9ca-2ec3-4932-a7ca-a566d0b50b20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY0YWE3MzdiLTYwNmYtNDdjOC1iODdlLWQ3NGYzYzBkNmVkMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3f46c15e-3455-474a-901a-899c49952056" + ], + "x-ms-correlation-request-id": [ + "0cd44805-535b-47be-9afc-e3a29eb53df0" + ], + "x-ms-arm-service-request-id": [ + "0b442d4c-155a-4d4f-9489-315959df31a7" + ], + "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:20200615T075825Z:0cd44805-535b-47be-9afc-e3a29eb53df0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY0YWE3MzdiLTYwNmYtNDdjOC1iODdlLWQ3NGYzYzBkNmVkMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b77d4828-6aae-44c6-8de0-979c4cc47eaa" + ], + "x-ms-correlation-request-id": [ + "4ccff4f4-7dac-4008-abd3-c4af37c23e06" + ], + "x-ms-arm-service-request-id": [ + "9850673a-f8fa-440e-a5e9-c18c045884e7" + ], + "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:20200615T075835Z:4ccff4f4-7dac-4008-abd3-c4af37c23e06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:35 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/afdfed9e-c624-476e-bcd9-4ab18642ea71?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2FmZGZlZDllLWM2MjQtNDc2ZS1iY2Q5LTRhYjE4NjQyZWE3MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9d569540-ae82-4bb3-8d0e-07e910435769" + ], + "x-ms-correlation-request-id": [ + "31e429b8-25df-4164-a53f-fb4c56ed4f52" + ], + "x-ms-arm-service-request-id": [ + "48f3db70-b5bb-4a3d-8106-f59ef4498eee" + ], + "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:20200615T075847Z:31e429b8-25df-4164-a53f-fb4c56ed4f52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:47 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fb0a1f3e-1658-4105-a83a-d43bff534c7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1769941d-62fd-4cc2-bb15-cc4d23f5617a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "a6845183-48f7-4be6-9953-e37bc7041c14" + ], + "x-ms-arm-service-request-id": [ + "198be7f6-fbfa-4ad8-9bff-7bf25d126605" + ], + "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:20200615T075847Z:a6845183-48f7-4be6-9953-e37bc7041c14" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "dd5e0bd1-6444-4be4-94dc-22303448f8a6" + ], + "x-ms-correlation-request-id": [ + "e65f9c6c-2e8c-483e-a6cb-f0801ec92ed6" + ], + "x-ms-arm-service-request-id": [ + "b0cdf6e7-d319-4df7-9b71-56d2eeba7f2c" + ], + "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:20200615T075857Z:e65f9c6c-2e8c-483e-a6cb-f0801ec92ed6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:58:57 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "98fa1d37-c2ae-444b-b8bc-67decb68fd75" + ], + "x-ms-correlation-request-id": [ + "e714f474-2753-4312-8931-f69390c96ee2" + ], + "x-ms-arm-service-request-id": [ + "5247e90c-c8f0-43cc-88f4-7fe97fdcaddf" + ], + "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:20200615T075908Z:e714f474-2753-4312-8931-f69390c96ee2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:07 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "104c37f4-dbb7-4250-b92d-a4d7c27bfd28" + ], + "x-ms-correlation-request-id": [ + "df79db3c-13a5-4922-b224-6c0e642ff47d" + ], + "x-ms-arm-service-request-id": [ + "b9a4290c-3ce6-429a-927b-385f3ce40d90" + ], + "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:20200615T075918Z:df79db3c-13a5-4922-b224-6c0e642ff47d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:17 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cc9394a6-7164-47e9-a445-06be45b31b1d" + ], + "x-ms-correlation-request-id": [ + "69e8f5e8-475c-4577-9b6a-8c945a9af9a5" + ], + "x-ms-arm-service-request-id": [ + "ec57f691-9b6f-4b5c-a337-f14c2185c904" + ], + "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:20200615T075928Z:69e8f5e8-475c-4577-9b6a-8c945a9af9a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:27 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5178de58-7678-49de-a242-82678ee79b43" + ], + "x-ms-correlation-request-id": [ + "8035927c-b1dd-45eb-a243-5c29d82ca859" + ], + "x-ms-arm-service-request-id": [ + "14efaa2a-9e28-4bca-98e1-3b0f1d37e95e" + ], + "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:20200615T075938Z:8035927c-b1dd-45eb-a243-5c29d82ca859" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:37 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "3d1159e2-a3ef-4c57-9a99-fc0734df47c0" + ], + "x-ms-correlation-request-id": [ + "ed6c01b8-7788-40e5-8b7b-12851c3b7b62" + ], + "x-ms-arm-service-request-id": [ + "ccc468fb-6ebb-4e2b-968b-3d59c435404f" + ], + "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:20200615T075948Z:ed6c01b8-7788-40e5-8b7b-12851c3b7b62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:47 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ff0f8999-a137-418b-a930-c4f2264572af" + ], + "x-ms-correlation-request-id": [ + "3298008a-9ca9-4c58-94ce-d204e7b489dd" + ], + "x-ms-arm-service-request-id": [ + "96c2b424-9873-43cb-824b-336446908685" + ], + "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:20200615T075958Z:3298008a-9ca9-4c58-94ce-d204e7b489dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:57 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "1769941d-62fd-4cc2-bb15-cc4d23f5617a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "a6845183-48f7-4be6-9953-e37bc7041c14" + ], + "x-ms-arm-service-request-id": [ + "198be7f6-fbfa-4ad8-9bff-7bf25d126605" + ], + "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:20200615T075958Z:fbc104bc-fa28-4df0-9693-0716a35e9337" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "afcf46c7-dd6d-436a-89b4-3b3d031b98a4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4569f553-ba12-409a-b1ed-e6dc4d9f14bd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "030bdb42-b580-4d79-b0b4-276e2a9c8d8e" + ], + "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:20200615T075959Z:7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 07:59:58 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "67de43ba-6c11-4a5b-ab1c-000a5f64626e" + ], + "x-ms-correlation-request-id": [ + "ed79caba-2f1a-4f3d-a4a0-8837946a40f6" + ], + "x-ms-arm-service-request-id": [ + "08540bd2-cf2c-4046-a439-89b888aee689" + ], + "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:20200615T080009Z:ed79caba-2f1a-4f3d-a4a0-8837946a40f6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:08 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "13e4ab4a-9df7-4934-82d0-142842e40475" + ], + "x-ms-correlation-request-id": [ + "6ed8a18c-b6ca-42b2-92d2-078fde3c8fdf" + ], + "x-ms-arm-service-request-id": [ + "356d4237-6db8-4a99-a192-a2b6ca64f482" + ], + "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:20200615T080019Z:6ed8a18c-b6ca-42b2-92d2-078fde3c8fdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:18 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c3d57de7-4026-49c7-a6d9-97342aa6e582" + ], + "x-ms-correlation-request-id": [ + "0c77df15-ffda-4a87-ad88-b1ee2b81ebbd" + ], + "x-ms-arm-service-request-id": [ + "f637dded-6b2f-47b2-935c-fdbd016ad2f3" + ], + "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:20200615T080029Z:0c77df15-ffda-4a87-ad88-b1ee2b81ebbd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:28 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d23ac3cf-d167-4a20-a82b-1de73f5b9d0e" + ], + "x-ms-correlation-request-id": [ + "da055802-250f-4347-ab1e-244b6a7005dc" + ], + "x-ms-arm-service-request-id": [ + "a0ed4db3-8990-491c-be42-62e002b84edf" + ], + "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:20200615T080039Z:da055802-250f-4347-ab1e-244b6a7005dc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:38 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e63317f1-df07-40de-a5d4-b67674589d6f" + ], + "x-ms-correlation-request-id": [ + "d662b25c-92c8-4986-8fb7-66a6a156af94" + ], + "x-ms-arm-service-request-id": [ + "00e46291-aacc-4d47-bd34-30915d4842d7" + ], + "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:20200615T080049Z:d662b25c-92c8-4986-8fb7-66a6a156af94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:48 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "362a9028-1643-4732-ab7a-30bfdc3d10f2" + ], + "x-ms-correlation-request-id": [ + "b918bcba-1faf-4247-aa30-c311721fb926" + ], + "x-ms-arm-service-request-id": [ + "73954a1f-0f20-42b7-91ff-1c25e0ebf238" + ], + "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:20200615T080059Z:b918bcba-1faf-4247-aa30-c311721fb926" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:00:58 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1fb88513-df64-4e00-8f2b-87af8ef990ee" + ], + "x-ms-correlation-request-id": [ + "77352781-b3c1-4e3d-868a-b94dd97b1334" + ], + "x-ms-arm-service-request-id": [ + "7558181a-2c66-4da1-9eaa-8c24d1acbe48" + ], + "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:20200615T080109Z:77352781-b3c1-4e3d-868a-b94dd97b1334" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "43bf3e70-a77a-4337-aa0c-05c666a52af1" + ], + "x-ms-correlation-request-id": [ + "1055c8ff-3987-4472-9cef-7b9f5b30208a" + ], + "x-ms-arm-service-request-id": [ + "3fb34ca4-e643-4437-8ef1-3b2a3cd2b5d9" + ], + "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:20200615T080119Z:1055c8ff-3987-4472-9cef-7b9f5b30208a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "aa41d028-68e6-4311-9dff-6aacd5d9e16f" + ], + "x-ms-correlation-request-id": [ + "77b9ebc3-d84b-42cf-ba02-b33cb3181392" + ], + "x-ms-arm-service-request-id": [ + "1b22d656-11c8-4c27-b344-fef5ce43d8a7" + ], + "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:20200615T080129Z:77b9ebc3-d84b-42cf-ba02-b33cb3181392" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:29 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0af98436-bc1c-4d6a-b62a-ad6d30ba2455" + ], + "x-ms-correlation-request-id": [ + "4865ebe3-6743-4626-84bd-33404ee8c8df" + ], + "x-ms-arm-service-request-id": [ + "ea0e660a-05b5-4aad-bbe3-8ac2b0aa2963" + ], + "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:20200615T080139Z:4865ebe3-6743-4626-84bd-33404ee8c8df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "96f03ba4-6e73-4270-8456-7e0cee9b115b" + ], + "x-ms-correlation-request-id": [ + "359c9f1b-7641-4e5e-8dd9-5fa5c7ecaa9a" + ], + "x-ms-arm-service-request-id": [ + "1519795f-c11e-45b4-a4a5-28084643d1f1" + ], + "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:20200615T080149Z:359c9f1b-7641-4e5e-8dd9-5fa5c7ecaa9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "37886643-dbc6-4da9-8fd5-6ef7057d4579" + ], + "x-ms-correlation-request-id": [ + "80800294-d34e-4db4-b086-314e81920c98" + ], + "x-ms-arm-service-request-id": [ + "64483225-4060-408d-a8cd-ad7b75ffcebb" + ], + "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:20200615T080159Z:80800294-d34e-4db4-b086-314e81920c98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:01:59 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1501ba10-6b12-42c3-8f4c-f02a8013fa84" + ], + "x-ms-correlation-request-id": [ + "b9152ae2-f05a-44ab-9457-3795b069be7a" + ], + "x-ms-arm-service-request-id": [ + "04a67928-4a19-42dc-802d-ab9ab3f0086a" + ], + "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:20200615T080210Z:b9152ae2-f05a-44ab-9457-3795b069be7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:02:09 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1eb79f04-b64b-4306-b33f-4ed0f33fee31" + ], + "x-ms-correlation-request-id": [ + "8eb776ba-929d-4327-9219-b92641e144b9" + ], + "x-ms-arm-service-request-id": [ + "f6176e09-94cb-4c91-9f20-39924ccc6826" + ], + "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:20200615T080220Z:8eb776ba-929d-4327-9219-b92641e144b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:02:19 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "216fecca-5519-46e6-848a-c6c753edc5ca" + ], + "x-ms-correlation-request-id": [ + "7cd4344f-a1c4-46f5-be03-264d2e8d0b98" + ], + "x-ms-arm-service-request-id": [ + "ffc78ecb-e008-404c-929e-2ac228d9f754" + ], + "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:20200615T080230Z:7cd4344f-a1c4-46f5-be03-264d2e8d0b98" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:02:29 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5fdf8752-1701-4be2-887a-e711e0593f1b" + ], + "x-ms-correlation-request-id": [ + "2299740c-7530-40c4-9463-a626c64d1c26" + ], + "x-ms-arm-service-request-id": [ + "049f085f-a5c9-4586-81ce-f14008770a7a" + ], + "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:20200615T080240Z:2299740c-7530-40c4-9463-a626c64d1c26" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:02:39 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b95d50ba-d2e1-4fae-bb7e-58d3697d00d1" + ], + "x-ms-correlation-request-id": [ + "c3dfa6d3-5f78-4fcc-8afe-f33dfd4e6f5d" + ], + "x-ms-arm-service-request-id": [ + "bbb1d66c-945b-4b93-8b0e-1e992ab695ba" + ], + "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:20200615T080250Z:c3dfa6d3-5f78-4fcc-8afe-f33dfd4e6f5d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:02:49 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e3b7bed5-24d5-4303-a963-05bd4bb8d799" + ], + "x-ms-correlation-request-id": [ + "2288ff1e-3a5b-450b-968a-a40b4929b132" + ], + "x-ms-arm-service-request-id": [ + "9e5da42a-5a02-4500-8f19-5db7bf6eb387" + ], + "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:20200615T080300Z:2288ff1e-3a5b-450b-968a-a40b4929b132" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "62dbd69a-da69-4503-9a08-85670c83e951" + ], + "x-ms-correlation-request-id": [ + "a5d6a133-8a65-489c-a3ca-5826e47fa785" + ], + "x-ms-arm-service-request-id": [ + "cf916523-1b8d-421d-b4f2-d7f33918b388" + ], + "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:20200615T080310Z:a5d6a133-8a65-489c-a3ca-5826e47fa785" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0636c50c-580d-48f7-8acc-50450df66e09" + ], + "x-ms-correlation-request-id": [ + "0ca9d1ca-bcdd-4720-b9c8-ccab7de2c01a" + ], + "x-ms-arm-service-request-id": [ + "3bfab2d5-1f56-4834-84b5-c1bb4d95489c" + ], + "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:20200615T080320Z:0ca9d1ca-bcdd-4720-b9c8-ccab7de2c01a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "99b7b97f-5501-40f8-95c1-4cf63eb2f90f" + ], + "x-ms-correlation-request-id": [ + "f90d9823-228d-49d7-a99d-894476a887b6" + ], + "x-ms-arm-service-request-id": [ + "129b6028-61f8-40bd-b390-2465f76cbb7b" + ], + "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:20200615T080330Z:f90d9823-228d-49d7-a99d-894476a887b6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:30 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "992d2bf2-e138-450e-98fc-d61e0d7bf67f" + ], + "x-ms-correlation-request-id": [ + "caeed8ad-6ad6-4cd4-bc9e-edaabd992350" + ], + "x-ms-arm-service-request-id": [ + "7cab0bbd-f1f9-458a-b7e9-1364c9ca9c30" + ], + "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:20200615T080340Z:caeed8ad-6ad6-4cd4-bc9e-edaabd992350" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e5c31bd-b876-41b0-a37b-77e4dc86c75c" + ], + "x-ms-correlation-request-id": [ + "b50a9202-35b5-4c4b-9268-7cae3ec91ac4" + ], + "x-ms-arm-service-request-id": [ + "fb35eb7e-5c42-42ac-baf0-0fe4a2255ad4" + ], + "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:20200615T080350Z:b50a9202-35b5-4c4b-9268-7cae3ec91ac4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:03:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5085de19-7788-41b8-8ee0-de61bf0917a2" + ], + "x-ms-correlation-request-id": [ + "048f2ee6-b497-4576-a9c8-5b282af70380" + ], + "x-ms-arm-service-request-id": [ + "4cfee812-a455-4a6c-9250-753683b411bb" + ], + "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:20200615T080400Z:048f2ee6-b497-4576-a9c8-5b282af70380" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbd10893-5da6-4092-a2f6-be879483584d" + ], + "x-ms-correlation-request-id": [ + "9db86dad-0767-4c7b-9260-8839173eaeca" + ], + "x-ms-arm-service-request-id": [ + "32c2c73d-7c2a-497a-b09f-776206775032" + ], + "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:20200615T080410Z:9db86dad-0767-4c7b-9260-8839173eaeca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "57ccdeb8-0b75-46c3-b3c6-28bdf9eae607" + ], + "x-ms-correlation-request-id": [ + "270c8533-433c-4acb-a2bb-5b712a316367" + ], + "x-ms-arm-service-request-id": [ + "0973426b-1512-4c77-b87b-d81271272f02" + ], + "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:20200615T080421Z:270c8533-433c-4acb-a2bb-5b712a316367" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:20 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0e5bdec7-4659-43ea-bda7-ad18fe14c4e4" + ], + "x-ms-correlation-request-id": [ + "5e4902aa-1385-481c-b424-0ac115924006" + ], + "x-ms-arm-service-request-id": [ + "7552a93c-04f8-4c11-a1e3-428c6a995369" + ], + "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:20200615T080431Z:5e4902aa-1385-481c-b424-0ac115924006" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:30 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c21e764-4136-42ea-be6b-5f2550a455af" + ], + "x-ms-correlation-request-id": [ + "bf9b09c1-3944-4089-99d8-357452498cc5" + ], + "x-ms-arm-service-request-id": [ + "0ebef400-d6b1-4db8-829a-9ebde14c14c9" + ], + "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:20200615T080441Z:bf9b09c1-3944-4089-99d8-357452498cc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:40 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "139443f2-2153-455e-8b07-27504821603f" + ], + "x-ms-correlation-request-id": [ + "acd30c4a-6c4f-4e78-b468-658e5a3e180f" + ], + "x-ms-arm-service-request-id": [ + "21e88b53-9784-4149-bc48-7738142d9be2" + ], + "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:20200615T080451Z:acd30c4a-6c4f-4e78-b468-658e5a3e180f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:04:50 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "0086ed11-f371-4a53-b1ab-0a5cd353c368" + ], + "x-ms-correlation-request-id": [ + "260afb5b-0a6f-441f-8143-b42954215a60" + ], + "x-ms-arm-service-request-id": [ + "dd67db59-267f-4140-ac39-652cf54352ac" + ], + "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:20200615T080501Z:260afb5b-0a6f-441f-8143-b42954215a60" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:00 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "232b8f03-e5f8-47ef-9a0c-151aa959d81b" + ], + "x-ms-correlation-request-id": [ + "8c92705d-4f64-4ea4-b83f-16e0aca4e874" + ], + "x-ms-arm-service-request-id": [ + "4a137488-4e82-4af0-9019-bf00bdf0494c" + ], + "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:20200615T080511Z:8c92705d-4f64-4ea4-b83f-16e0aca4e874" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:10 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ebbfbc22-1ee4-4734-92b8-a284156d2a74" + ], + "x-ms-correlation-request-id": [ + "dc55cffd-6278-4422-b1e2-a2ad5130fe04" + ], + "x-ms-arm-service-request-id": [ + "3f0c1e32-fb54-483d-9f18-f9a6a9c0e1b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080521Z:dc55cffd-6278-4422-b1e2-a2ad5130fe04" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:21 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cc0152c1-eedb-4075-a700-36389b34c88c" + ], + "x-ms-correlation-request-id": [ + "5232e97f-b269-431b-b8ed-fbb85e54801c" + ], + "x-ms-arm-service-request-id": [ + "a6908c51-e449-47f7-b5a5-f4bd382fae27" + ], + "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:20200615T080531Z:5232e97f-b269-431b-b8ed-fbb85e54801c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6c0f56de-e477-45c5-8b24-a8a542a5fb72" + ], + "x-ms-correlation-request-id": [ + "794d9440-9dfc-496a-abba-c1f6e6699dd8" + ], + "x-ms-arm-service-request-id": [ + "47fa92ab-7e08-4b91-b657-826a7750f875" + ], + "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:20200615T080541Z:794d9440-9dfc-496a-abba-c1f6e6699dd8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "8a154c34-ffa2-4e6f-becc-7d8da86b8c1a" + ], + "x-ms-correlation-request-id": [ + "7e8cb40a-159b-4c55-b797-27c68115c513" + ], + "x-ms-arm-service-request-id": [ + "af340815-f2a3-495e-9702-d5405540eff5" + ], + "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:20200615T080551Z:7e8cb40a-159b-4c55-b797-27c68115c513" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:05:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d7ead18c-efec-4c46-ad6e-9c08d04edeb1" + ], + "x-ms-correlation-request-id": [ + "1b4037f3-90f3-4a38-9e33-8301961496cb" + ], + "x-ms-arm-service-request-id": [ + "3d65eac0-cda5-4a43-9b21-0ec542d48b80" + ], + "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:20200615T080601Z:1b4037f3-90f3-4a38-9e33-8301961496cb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:01 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "4c839fea-b138-42d3-b02c-2867c739b486" + ], + "x-ms-correlation-request-id": [ + "a900d102-e13c-4a3c-aa7b-71e5d7324f56" + ], + "x-ms-arm-service-request-id": [ + "15903af9-fac3-4304-ac5d-93c04a871dea" + ], + "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:20200615T080611Z:a900d102-e13c-4a3c-aa7b-71e5d7324f56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:11 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "33464b26-3cf5-4f79-a835-458af7f3813e" + ], + "x-ms-correlation-request-id": [ + "43dd512c-89a7-4020-805d-1682b64c4eea" + ], + "x-ms-arm-service-request-id": [ + "de11bb2a-c9b6-425b-8806-24b88d436a9e" + ], + "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:20200615T080621Z:43dd512c-89a7-4020-805d-1682b64c4eea" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:21 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e4e373f3-5e61-46ca-8c7a-448e78a4b871" + ], + "x-ms-correlation-request-id": [ + "e2a5f1ef-a623-4aca-88f4-fdac8206b3a8" + ], + "x-ms-arm-service-request-id": [ + "8d51009a-ecf7-48f2-8157-38de64fff045" + ], + "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:20200615T080631Z:e2a5f1ef-a623-4aca-88f4-fdac8206b3a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:31 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5546b92a-5765-4497-adfc-2e44fe7d45a6" + ], + "x-ms-correlation-request-id": [ + "a2db11e6-471a-455c-94a5-56a66c2f4eda" + ], + "x-ms-arm-service-request-id": [ + "0d131bb4-f501-4b50-acd3-cfc120277bb9" + ], + "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:20200615T080642Z:a2db11e6-471a-455c-94a5-56a66c2f4eda" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:41 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "335ec848-3bc4-4451-b664-52987eef9e3f" + ], + "x-ms-correlation-request-id": [ + "aa1b9095-adbf-41d8-8d79-94192f1b5d9c" + ], + "x-ms-arm-service-request-id": [ + "371afc2e-9488-4a52-8624-971d8611fd56" + ], + "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:20200615T080652Z:aa1b9095-adbf-41d8-8d79-94192f1b5d9c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:06:51 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7c145019-4e8f-440b-b7cd-2af209899edc" + ], + "x-ms-correlation-request-id": [ + "d341494c-f859-4645-a803-8d8dd7ae44a0" + ], + "x-ms-arm-service-request-id": [ + "c696cd68-d4e2-4612-a679-d9dd92c1a68a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080702Z:d341494c-f859-4645-a803-8d8dd7ae44a0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fb65b3bb-c603-4597-b54a-9f033a455a56" + ], + "x-ms-correlation-request-id": [ + "712c9613-ce09-4772-8e8f-20c04994fe8a" + ], + "x-ms-arm-service-request-id": [ + "a3ef05be-df61-4cb1-8894-8c11a704deb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080712Z:712c9613-ce09-4772-8e8f-20c04994fe8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "eccae471-0b33-4f2d-8e32-2dea1ea3a65a" + ], + "x-ms-correlation-request-id": [ + "7492e6df-6df7-4147-96f4-27592afa0a94" + ], + "x-ms-arm-service-request-id": [ + "8e92cafb-654c-463e-869a-c68b5c6f6789" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080722Z:7492e6df-6df7-4147-96f4-27592afa0a94" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:22 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "16e14a82-54de-40e1-862d-34ba0b178795" + ], + "x-ms-correlation-request-id": [ + "738c6088-892c-4616-adef-acf4181e8e85" + ], + "x-ms-arm-service-request-id": [ + "8ade510d-9c2a-4be8-b110-d0f7eccadbd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080732Z:738c6088-892c-4616-adef-acf4181e8e85" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "31b2ee0a-3fc0-44bd-862d-bb5558ea627b" + ], + "x-ms-correlation-request-id": [ + "f4f6586c-a77f-4fec-8826-cd7dcc36928a" + ], + "x-ms-arm-service-request-id": [ + "d7bd7d1b-2ec4-4c69-b187-2ebc90880035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080742Z:f4f6586c-a77f-4fec-8826-cd7dcc36928a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "91ba17b1-b98e-46aa-ae1d-13b5b656de77" + ], + "x-ms-correlation-request-id": [ + "7bbecab4-58ee-46ef-ab2c-94c068eded76" + ], + "x-ms-arm-service-request-id": [ + "2799e5ab-5c7e-451e-a985-eb5b600d4da4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080752Z:7bbecab4-58ee-46ef-ab2c-94c068eded76" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:07:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ad32a796-61c4-487f-9bba-1502bf546127" + ], + "x-ms-correlation-request-id": [ + "c2a0a543-a3e4-42fb-b5da-333dcb7022e1" + ], + "x-ms-arm-service-request-id": [ + "9f692c75-9de9-4bf9-bc2e-ed1d9a94a158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080802Z:c2a0a543-a3e4-42fb-b5da-333dcb7022e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "b0ddfd75-ab8b-4792-ba28-1ea924ae7c19" + ], + "x-ms-correlation-request-id": [ + "ef7e5a99-a9e8-4d05-bd50-40a5c20d870a" + ], + "x-ms-arm-service-request-id": [ + "af7e38e9-b366-44ef-b135-a635849ccdeb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080812Z:ef7e5a99-a9e8-4d05-bd50-40a5c20d870a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4e84a933-9935-40ce-bdcd-9aef076d8d00" + ], + "x-ms-correlation-request-id": [ + "611ba76c-52bf-42e9-9a91-c2f860cdacdf" + ], + "x-ms-arm-service-request-id": [ + "f82b8cfa-51e9-46c0-964a-e84528477950" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080822Z:611ba76c-52bf-42e9-9a91-c2f860cdacdf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:22 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "4569f553-ba12-409a-b1ed-e6dc4d9f14bd" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "030bdb42-b580-4d79-b0b4-276e2a9c8d8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T080822Z:3b15c9fa-905f-4d02-b3ba-6a83a2d95790" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89fa56c7-21ac-4ca9-9bbd-ab37379191de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f202fc7e-cabb-4eef-bb68-118bc033e606" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "9d2aee57-4c67-4619-9ece-90caca31c8d9" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e5a08606-acdf-488f-8096-a2bbf526f19e" + ], + "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:20200615T080823Z:9d2aee57-4c67-4619-9ece-90caca31c8d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f181c2c1-b72a-4215-b308-79d7e5854a80" + ], + "x-ms-correlation-request-id": [ + "d7cb9311-68e9-46e6-ae25-b9e1787d3a7e" + ], + "x-ms-arm-service-request-id": [ + "57646322-4af8-4123-92b5-a10116a3f6e9" + ], + "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:20200615T080833Z:d7cb9311-68e9-46e6-ae25-b9e1787d3a7e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:32 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f093adbe-164e-421b-b255-10186e863219" + ], + "x-ms-correlation-request-id": [ + "8e0c6188-0f6b-4a71-b9c8-759dcd5d91c5" + ], + "x-ms-arm-service-request-id": [ + "6e58f1bb-6b17-41c5-b75b-9cd76ad06b79" + ], + "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:20200615T080843Z:8e0c6188-0f6b-4a71-b9c8-759dcd5d91c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:42 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "949e4864-48af-436a-8365-d40b689f4fe0" + ], + "x-ms-correlation-request-id": [ + "59ab3a55-42ce-4ad7-bdbd-1d2ed39e0e67" + ], + "x-ms-arm-service-request-id": [ + "708ba950-b458-40a1-a1c6-dc263eba0f62" + ], + "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:20200615T080853Z:59ab3a55-42ce-4ad7-bdbd-1d2ed39e0e67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:08:52 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ef944e82-befe-456a-9ab3-9d8e3e032595" + ], + "x-ms-correlation-request-id": [ + "827b3bc7-d2f5-4c31-8fa5-02fc5243dbe3" + ], + "x-ms-arm-service-request-id": [ + "e6f11770-a713-468d-ac07-688ca9a3a62f" + ], + "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:20200615T080903Z:827b3bc7-d2f5-4c31-8fa5-02fc5243dbe3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:02 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f96b488c-2be3-4393-93d0-be0a6fe7474b" + ], + "x-ms-correlation-request-id": [ + "83d3c037-08e8-4f4a-b616-421d80e65c9e" + ], + "x-ms-arm-service-request-id": [ + "88ce3996-005b-46eb-b197-7e42f5824ac2" + ], + "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:20200615T080913Z:83d3c037-08e8-4f4a-b616-421d80e65c9e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:12 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "04f887ef-8e6f-44c2-89d2-6758c953a965" + ], + "x-ms-correlation-request-id": [ + "eaad0abb-cbea-492d-b6c7-7fa511b3513c" + ], + "x-ms-arm-service-request-id": [ + "50d61cfd-9d45-44da-8fe0-be517b3ab51a" + ], + "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:20200615T080923Z:eaad0abb-cbea-492d-b6c7-7fa511b3513c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ddfd9467-52d0-43b3-b34e-0b5beab2f13b" + ], + "x-ms-correlation-request-id": [ + "eab8519c-954e-490c-b04e-f34a172ee88a" + ], + "x-ms-arm-service-request-id": [ + "6103eb3a-6066-4c16-b603-9460130764ef" + ], + "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:20200615T080933Z:eab8519c-954e-490c-b04e-f34a172ee88a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "655f960c-8d48-4475-a72a-8fcec5da126e" + ], + "x-ms-correlation-request-id": [ + "18ad02de-b870-42a2-87e6-fb27ae7d05c9" + ], + "x-ms-arm-service-request-id": [ + "81582a1a-169c-46e7-8383-180da3b103a2" + ], + "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:20200615T080943Z:18ad02de-b870-42a2-87e6-fb27ae7d05c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "cbdf2d1f-f7d0-4a3f-85d8-165c685d21bc" + ], + "x-ms-correlation-request-id": [ + "c7de491d-ba3a-4406-a661-6594a8315248" + ], + "x-ms-arm-service-request-id": [ + "ef8578df-9469-4815-824f-5abb787c55ec" + ], + "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:20200615T080953Z:c7de491d-ba3a-4406-a661-6594a8315248" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:09:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fe12285e-2025-4c51-a28e-c85192dce42e" + ], + "x-ms-correlation-request-id": [ + "1d33ff35-2abe-47c9-9784-f98ac9055f3c" + ], + "x-ms-arm-service-request-id": [ + "b2686909-c61f-4a21-98bc-8dc062c83edf" + ], + "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:20200615T081004Z:1d33ff35-2abe-47c9-9784-f98ac9055f3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2d4655a0-4411-49cf-a681-c84bf40bd43a" + ], + "x-ms-correlation-request-id": [ + "c892ecfb-2f66-420d-983b-6480833b7ee6" + ], + "x-ms-arm-service-request-id": [ + "a1d98148-ce25-432b-888c-3f455e9e41fa" + ], + "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:20200615T081014Z:c892ecfb-2f66-420d-983b-6480833b7ee6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "465fcf30-1ee4-4295-b71b-a2c7d7ff9641" + ], + "x-ms-correlation-request-id": [ + "a0ed0214-b045-4261-9066-659b83e5c953" + ], + "x-ms-arm-service-request-id": [ + "1a7c9a84-25b3-4c07-af49-ae576e87c334" + ], + "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:20200615T081024Z:a0ed0214-b045-4261-9066-659b83e5c953" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:23 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a3f4adc7-85c4-4889-bbf1-b64cd94d4250" + ], + "x-ms-correlation-request-id": [ + "a9648851-6b19-4931-8412-3cf9cdc99b68" + ], + "x-ms-arm-service-request-id": [ + "1e86f3a4-5d00-4721-9153-98590f9c833c" + ], + "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:20200615T081034Z:a9648851-6b19-4931-8412-3cf9cdc99b68" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:33 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f4f0f984-00e0-4994-aaad-ad83eab50a50" + ], + "x-ms-correlation-request-id": [ + "42fdd942-afa7-4273-ba7a-161c26dffcca" + ], + "x-ms-arm-service-request-id": [ + "337793d5-dc5a-45b1-b26f-26b0e6e6189e" + ], + "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:20200615T081044Z:42fdd942-afa7-4273-ba7a-161c26dffcca" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:43 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "fa8174fa-cc7d-4635-983f-9a797cb5fbd2" + ], + "x-ms-correlation-request-id": [ + "65493474-5af1-4b12-b4ff-fa4d2ecafa20" + ], + "x-ms-arm-service-request-id": [ + "2a14b646-cb14-47d1-9fee-506b2117cbb7" + ], + "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:20200615T081054Z:65493474-5af1-4b12-b4ff-fa4d2ecafa20" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:10:53 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "68e3dd49-c607-4608-83d0-b4519921092d" + ], + "x-ms-correlation-request-id": [ + "6f8e3464-9756-4ce7-b413-6c88adfacaff" + ], + "x-ms-arm-service-request-id": [ + "69a632e8-90fd-4575-9fc0-e77ec6ca4473" + ], + "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:20200615T081104Z:6f8e3464-9756-4ce7-b413-6c88adfacaff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11:03 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "35c0e7bb-e906-493f-a640-c41da92aef16" + ], + "x-ms-correlation-request-id": [ + "3b654e71-b855-4130-94ac-1b4a9970f556" + ], + "x-ms-arm-service-request-id": [ + "d3598615-f95c-4abc-b52b-b0d24074d860" + ], + "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:20200615T081114Z:3b654e71-b855-4130-94ac-1b4a9970f556" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11:13 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f4ea34d-d658-4147-8837-28e5425e95b3" + ], + "x-ms-correlation-request-id": [ + "51c9d08d-af04-4445-9a33-4a99abf20805" + ], + "x-ms-arm-service-request-id": [ + "e4f2d740-b66b-4291-a263-d854527ca288" + ], + "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:20200615T081124Z:51c9d08d-af04-4445-9a33-4a99abf20805" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11: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/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9c231c93-ce2c-498b-ab11-fb7fe7fc420e" + ], + "x-ms-correlation-request-id": [ + "31993701-77ea-4051-8a0b-8aa17cf8e6a5" + ], + "x-ms-arm-service-request-id": [ + "8a43834f-5d5b-40ef-b5f7-d6dced8e4f7c" + ], + "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:20200615T081134Z:31993701-77ea-4051-8a0b-8aa17cf8e6a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "302e4ba3-ea30-4aff-913a-7a24dd703248" + ], + "x-ms-correlation-request-id": [ + "0bb7be18-fd18-4089-bd7d-1ebd74f6b34a" + ], + "x-ms-arm-service-request-id": [ + "84546c3d-7dd4-4991-b7ab-265d142622b6" + ], + "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:20200615T081144Z:0bb7be18-fd18-4089-bd7d-1ebd74f6b34a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d3098eda-5ae6-4d17-b186-162519485b64" + ], + "x-ms-correlation-request-id": [ + "5c602f04-9101-49b7-9ef9-ac7665c1c966" + ], + "x-ms-arm-service-request-id": [ + "b88c9a56-4087-4133-9964-00200f1bf439" + ], + "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:20200615T081154Z:5c602f04-9101-49b7-9ef9-ac7665c1c966" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:11:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "30e8a3de-fc3b-4f79-9426-d009076325a3" + ], + "x-ms-correlation-request-id": [ + "90ab62dd-db01-43a7-a4d1-4deb9860f254" + ], + "x-ms-arm-service-request-id": [ + "fc7ca31e-589d-4017-ae06-c047bcba442d" + ], + "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:20200615T081204Z:90ab62dd-db01-43a7-a4d1-4deb9860f254" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12:04 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "08a85ff0-68dc-4621-9ccc-824952dc8377" + ], + "x-ms-correlation-request-id": [ + "718ba6c6-2cee-472f-9fe5-f05ca5d117fe" + ], + "x-ms-arm-service-request-id": [ + "d670d55d-d21f-46df-8f3d-5e043a03fe0b" + ], + "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:20200615T081214Z:718ba6c6-2cee-472f-9fe5-f05ca5d117fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c0d0bd0d-b80d-4b00-9f45-3d755ff74eae" + ], + "x-ms-correlation-request-id": [ + "6f7aa93a-534d-4d4f-a9f9-48146e1c276f" + ], + "x-ms-arm-service-request-id": [ + "2e0b1c0b-4abf-44c7-9dd0-f777f4082171" + ], + "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:20200615T081224Z:6f7aa93a-534d-4d4f-a9f9-48146e1c276f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12: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/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a256671b-09e2-405b-b386-539f294a8394" + ], + "x-ms-correlation-request-id": [ + "5c9a41ec-6370-44dc-812b-df3cd5e062dd" + ], + "x-ms-arm-service-request-id": [ + "a3fd1b46-d01c-462f-985f-bba76a5059d6" + ], + "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:20200615T081234Z:5c9a41ec-6370-44dc-812b-df3cd5e062dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "6e033940-fe26-4a9b-80ef-d803837ce792" + ], + "x-ms-correlation-request-id": [ + "224cda1e-beb1-49a0-aab2-69b6b3e0c7d2" + ], + "x-ms-arm-service-request-id": [ + "fe4deb49-288a-47dc-a10e-ebe890e5e26c" + ], + "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:20200615T081244Z:224cda1e-beb1-49a0-aab2-69b6b3e0c7d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "f6d817f3-4aae-4394-ba11-f37d0e8f8b50" + ], + "x-ms-correlation-request-id": [ + "6cbd56be-f158-457a-bad2-259d028de6ff" + ], + "x-ms-arm-service-request-id": [ + "4381e9e7-b76c-4ffe-9937-d452e90a3f0c" + ], + "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:20200615T081255Z:6cbd56be-f158-457a-bad2-259d028de6ff" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:12:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a1beeadb-585a-4abd-8c68-67c24f392fe6" + ], + "x-ms-correlation-request-id": [ + "b9e01ade-911e-4340-9073-57052d6f48e5" + ], + "x-ms-arm-service-request-id": [ + "3dd7dd13-202c-487e-9691-0ab50f9208d3" + ], + "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:20200615T081305Z:b9e01ade-911e-4340-9073-57052d6f48e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:05 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "abdc75d4-cfe5-46b5-b897-c84a0aeface0" + ], + "x-ms-correlation-request-id": [ + "80097722-b57c-4d89-96cd-96b1f941de53" + ], + "x-ms-arm-service-request-id": [ + "e36fe5ee-dd17-4342-a5ae-cde8d09e25be" + ], + "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:20200615T081315Z:80097722-b57c-4d89-96cd-96b1f941de53" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "a865f27b-caa0-4337-abd8-7a3866e4d7e9" + ], + "x-ms-correlation-request-id": [ + "7c2ee06f-f9b7-4642-af94-065ee208d887" + ], + "x-ms-arm-service-request-id": [ + "c5e1b496-e071-48c1-8d8b-27a47e361795" + ], + "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:20200615T081325Z:7c2ee06f-f9b7-4642-af94-065ee208d887" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ce018dbb-42be-4a74-9cc0-671c09ff564f" + ], + "x-ms-correlation-request-id": [ + "6716c76e-137b-4c9a-a72e-7ad001b93258" + ], + "x-ms-arm-service-request-id": [ + "902856d5-ec3e-4eb5-ba75-3a291193196b" + ], + "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:20200615T081335Z:6716c76e-137b-4c9a-a72e-7ad001b93258" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:34 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9697a0e9-1672-4046-b4c1-a5c93fbd1b0e" + ], + "x-ms-correlation-request-id": [ + "d184ba7e-41cc-4ad4-9eb5-5806685b30e1" + ], + "x-ms-arm-service-request-id": [ + "6cd5929c-65d1-4bd9-b526-1a8c7db8e1f4" + ], + "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:20200615T081345Z:d184ba7e-41cc-4ad4-9eb5-5806685b30e1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:44 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "1f3e47fc-ef7b-476f-b8b8-6f0dc23266fb" + ], + "x-ms-correlation-request-id": [ + "2b6f0e68-6eda-4b98-aad4-3ef1c2e42de5" + ], + "x-ms-arm-service-request-id": [ + "a77e8dac-cf32-4f88-b783-b4230507882d" + ], + "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:20200615T081355Z:2b6f0e68-6eda-4b98-aad4-3ef1c2e42de5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:13:54 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "9611b335-3f1f-4eef-a4ec-e545c01f3346" + ], + "x-ms-correlation-request-id": [ + "720cec68-a66d-442d-9271-a460f2fd2fc3" + ], + "x-ms-arm-service-request-id": [ + "eefdc54c-8910-47d4-b678-c1c503dfd140" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081405Z:720cec68-a66d-442d-9271-a460f2fd2fc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:04 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5451c0ca-759e-4c6c-b3ac-7da78c019292" + ], + "x-ms-correlation-request-id": [ + "d7a28d5b-e6ed-4c49-93a3-6bb00a277bc5" + ], + "x-ms-arm-service-request-id": [ + "aecbd74a-0a4b-43ba-90e5-3f53ea6279d7" + ], + "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:20200615T081415Z:d7a28d5b-e6ed-4c49-93a3-6bb00a277bc5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:14 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c8961a3a-8e6f-4705-8e1f-8031f7101df3" + ], + "x-ms-correlation-request-id": [ + "79b7b257-61de-4313-9ead-b9f7198b3c4d" + ], + "x-ms-arm-service-request-id": [ + "231d8851-5ddd-4463-ad19-8352cb77ff7c" + ], + "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:20200615T081425Z:79b7b257-61de-4313-9ead-b9f7198b3c4d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "10696ca4-81eb-469f-9037-350834a42e0d" + ], + "x-ms-correlation-request-id": [ + "cb28e4d8-566c-44ba-9508-2fd576e8d576" + ], + "x-ms-arm-service-request-id": [ + "23d80bbf-8fd1-488b-b3f9-f473eae07df2" + ], + "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:20200615T081435Z:cb28e4d8-566c-44ba-9508-2fd576e8d576" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "c532353d-84ce-4a69-9e78-c322279341ae" + ], + "x-ms-correlation-request-id": [ + "db575c4c-250d-4046-aa27-4f32be2899b9" + ], + "x-ms-arm-service-request-id": [ + "38dc0ee8-d578-4e08-8bdf-0301f8c55ba5" + ], + "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:20200615T081445Z:db575c4c-250d-4046-aa27-4f32be2899b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "ad321225-bdbc-4e73-8db4-1a5368362589" + ], + "x-ms-correlation-request-id": [ + "a7734850-0d18-4c99-9f83-c15306600dc3" + ], + "x-ms-arm-service-request-id": [ + "a4f92013-da9d-40a5-a234-1fb78b74bf66" + ], + "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:20200615T081455Z:a7734850-0d18-4c99-9f83-c15306600dc3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:14:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2b61f9d4-5633-47c1-afa9-88fcab72d163" + ], + "x-ms-correlation-request-id": [ + "58f67591-adeb-4ed1-9451-23d356618148" + ], + "x-ms-arm-service-request-id": [ + "44b6226b-384c-4afe-a56d-061a7b4d6631" + ], + "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:20200615T081505Z:58f67591-adeb-4ed1-9451-23d356618148" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:05 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d1fa89be-6a97-41c7-a913-e1acbafd9b64" + ], + "x-ms-correlation-request-id": [ + "070be3c0-c876-4f3e-8a81-2742aa5cc982" + ], + "x-ms-arm-service-request-id": [ + "86ea6eb8-9f5e-4272-bfa5-238032fc8147" + ], + "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:20200615T081516Z:070be3c0-c876-4f3e-8a81-2742aa5cc982" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:15 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "5f4cc0cc-1bd8-472b-b062-5fbfc6817b0a" + ], + "x-ms-correlation-request-id": [ + "2854b4c5-1527-419d-96b3-3c0fb60ccef5" + ], + "x-ms-arm-service-request-id": [ + "9ab9410e-e954-4962-adf1-ad3f4d17e46a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081526Z:2854b4c5-1527-419d-96b3-3c0fb60ccef5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:25 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e282c759-fed0-4b4c-98db-c7a60aeabc22" + ], + "x-ms-correlation-request-id": [ + "cc016d3f-7d18-46ec-8240-8ba9ce9b568a" + ], + "x-ms-arm-service-request-id": [ + "e84c2a2a-9e7e-4bea-b69b-9685f6487086" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081536Z:cc016d3f-7d18-46ec-8240-8ba9ce9b568a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:35 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "7b9d5b51-d228-41df-a323-f34354916877" + ], + "x-ms-correlation-request-id": [ + "1a1c5eb5-7139-4c46-bd6e-68611755c957" + ], + "x-ms-arm-service-request-id": [ + "3f7c42f9-59ce-42e1-940d-9aa1fe30697b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081546Z:1a1c5eb5-7139-4c46-bd6e-68611755c957" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:45 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "d841d246-6ae7-4749-85ba-d4975290e7da" + ], + "x-ms-correlation-request-id": [ + "95fbf015-b24f-42cc-b7de-8976af3fe188" + ], + "x-ms-arm-service-request-id": [ + "1d83b754-56f1-4470-becf-79f74d6c5015" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081556Z:95fbf015-b24f-42cc-b7de-8976af3fe188" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:15:55 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "e6ed171e-2a4f-454e-90ff-147d900e2d6e" + ], + "x-ms-correlation-request-id": [ + "ae49741f-0d5c-43a8-a962-ee616dfb6362" + ], + "x-ms-arm-service-request-id": [ + "ec7f3edf-37a5-43fc-adb9-bbe67c99aa83" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081606Z:ae49741f-0d5c-43a8-a962-ee616dfb6362" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:05 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e00b1e2e-381c-446c-8bfb-378cab8945d1" + ], + "x-ms-correlation-request-id": [ + "fa574581-9f08-4735-b9d3-e3626ce99d69" + ], + "x-ms-arm-service-request-id": [ + "201dc724-509a-449b-8baf-06a1db44a15d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081616Z:fa574581-9f08-4735-b9d3-e3626ce99d69" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:15 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "f202fc7e-cabb-4eef-bb68-118bc033e606" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "9d2aee57-4c67-4619-9ece-90caca31c8d9" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e5a08606-acdf-488f-8096-a2bbf526f19e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081616Z:4d65803f-a661-402a-9fc1-5a9179d0b468" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7527d23a-ad59-4eac-8ea1-aacfb21c742f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + ], + "Retry-After": [ + "10" + ], + "x-ms-request-id": [ + "2e2c0586-ab94-4d08-95c0-b01752b59a46" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "93c0c74f-134b-4bb0-b033-396a13b6d7a1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7b0de7bd-a067-47ba-b5fb-5e6d81ad7bf4" + ], + "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:20200615T081616Z:93c0c74f-134b-4bb0-b033-396a13b6d7a1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJlMmMwNTg2LWFiOTQtNGQwOC05NWMwLWIwMTc1MmI1OWE0Nj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "832fffcf-a5bd-4a61-a8d3-f59f737bfef6" + ], + "x-ms-correlation-request-id": [ + "39328b24-d90d-40ca-9e31-cfba1b4830c0" + ], + "x-ms-arm-service-request-id": [ + "6337eb75-bd82-4ce1-9cbd-7e11b91f09d2" + ], + "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:20200615T081627Z:39328b24-d90d-40ca-9e31-cfba1b4830c0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:26 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlMmMwNTg2LWFiOTQtNGQwOC05NWMwLWIwMTc1MmI1OWE0Nj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + ], + "x-ms-request-id": [ + "2e2c0586-ab94-4d08-95c0-b01752b59a46" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + ], + "x-ms-correlation-request-id": [ + "93c0c74f-134b-4bb0-b033-396a13b6d7a1" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7b0de7bd-a067-47ba-b5fb-5e6d81ad7bf4" + ], + "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:20200615T081627Z:3aa067e2-1aa7-47dc-b7fb-3c2fa586230c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps5557?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNTU1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55943e89-68ea-4c94-b8c8-5249677a0da3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "ed0b53ad-e2e1-426b-80ab-789aa91e914e" + ], + "x-ms-correlation-request-id": [ + "ed0b53ad-e2e1-426b-80ab-789aa91e914e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081628Z:ed0b53ad-e2e1-426b-80ab-789aa91e914e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "04504bcd-4fab-463f-9bd1-82edf7768c10" + ], + "x-ms-correlation-request-id": [ + "04504bcd-4fab-463f-9bd1-82edf7768c10" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081643Z:04504bcd-4fab-463f-9bd1-82edf7768c10" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + ], + "x-ms-correlation-request-id": [ + "8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081658Z:8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:16:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "5858bf3d-5982-4573-abba-49f11c42a576" + ], + "x-ms-correlation-request-id": [ + "5858bf3d-5982-4573-abba-49f11c42a576" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081713Z:5858bf3d-5982-4573-abba-49f11c42a576" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:17:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + ], + "x-ms-correlation-request-id": [ + "05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200615T081713Z:05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 15 Jun 2020 08:17:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-VHubRouteTableCRUD": [ + "ps5557", + "ps3759", + "ps7830" + ] + }, + "Variables": { + "SubscriptionId": "62364504-2406-418e-971c-05822ff72fad" + } +} \ No newline at end of file From b98d424eb637c3ca9b771a7a57e750913a23deeb Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 15 Jun 2020 19:10:29 -0700 Subject: [PATCH 10/15] update help --- .../NewAzureRmRoutingConfigurationCommand.cs | 6 +- .../Models/Cortex/PSExpressRouteConnection.cs | 7 +- .../Cortex/PSHubVirtualNetworkConnection.cs | 8 +- .../Cortex/PSP2SConnectionConfiguration.cs | 7 +- .../Models/Cortex/PSRoutingConfiguration.cs | 25 ++++-- .../Network/Models/Cortex/PSVHubRouteTable.cs | 26 ++++-- .../Network/Models/Cortex/PSVpnConnection.cs | 8 +- src/Network/Network/Network.format.ps1xml | 80 +++++++++++++++++++ .../help/Get-AzExpressRouteConnection.md | 53 +++++++++++- .../Network/help/Get-AzP2sVpnGateway.md | 16 ++++ .../Network/help/Get-AzVHubRouteTable.md | 57 +++++++++++-- .../help/Get-AzVirtualHubVnetConnection.md | 64 +++++++++++++++ .../Network/help/Get-AzVpnConnection.md | 54 ++++++++++++- .../help/New-AzExpressRouteConnection.md | 18 +++++ .../Network/help/New-AzP2sVpnGateway.md | 18 +++++ .../help/New-AzRoutingConfiguration.md | 37 ++++++++- src/Network/Network/help/New-AzStaticRoute.md | 10 ++- src/Network/Network/help/New-AzVHubRoute.md | 35 +++++++- .../Network/help/New-AzVHubRouteTable.md | 29 ++++++- .../help/New-AzVirtualHubVnetConnection.md | 18 +++++ .../Network/help/New-AzVpnConnection.md | 20 ++++- .../Network/help/Remove-AzVHubRouteTable.md | 21 +---- .../help/Set-AzExpressRouteConnection.md | 18 +++++ .../Network/help/Update-AzP2sVpnGateway.md | 18 +++++ .../Network/help/Update-AzVHubRouteTable.md | 26 +++++- .../help/Update-AzVirtualHubVnetConnection.md | 20 ++++- .../Network/help/Update-AzVpnConnection.md | 34 ++++++++ .../Exceptions/Az.Network/SignatureIssues.csv | 3 + 28 files changed, 670 insertions(+), 66 deletions(-) diff --git a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs index 1d47fbc6f3c4..3fa0a9e310ca 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/NewAzureRmRoutingConfigurationCommand.cs @@ -65,7 +65,7 @@ public override void Execute() // Resolve the Propagated RouteTable property var propagatedRouteTable = new PSPropagatedRouteTable { - Labels = Label.ToList() + Labels = Label?.ToList() }; var resolvedIds = new List() { }; @@ -107,9 +107,9 @@ private PSVHubRouteTable ResolveRouteTableId(string routeTableId) throw new PSArgumentException(Properties.Resources.VHubRouteTableReferenceNotFound); } - var parsedHubId = new ResourceIdentifier(parsedRouteTableId.ParentResource); + var parsedHubName = parsedRouteTableId.ParentResource.Split(new[] { '/' }, StringSplitOptions.RemoveEmptyEntries).Last(); var resolvedRouteTable = new VHubRouteTableBaseCmdlet() - .GetVHubRouteTable(parsedRouteTableId.ResourceGroupName, parsedHubId.ResourceName, parsedRouteTableId.ResourceName); + .GetVHubRouteTable(parsedRouteTableId.ResourceGroupName, parsedHubName, parsedRouteTableId.ResourceName); return resolvedRouteTable; } } diff --git a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs index bd4e3382f058..8c7a22d89639 100644 --- a/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs +++ b/src/Network/Network/Models/Cortex/PSExpressRouteConnection.cs @@ -31,7 +31,6 @@ public class PSExpressRouteConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } - [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] public PSRoutingConfiguration RoutingConfiguration { get; set; } [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] @@ -42,5 +41,11 @@ public string ExpressRouteCircuitPeeringText { get { return JsonConvert.SerializeObject(ExpressRouteCircuitPeering, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string RoutingConfigurationText + { + get { return JsonConvert.SerializeObject(RoutingConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs b/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs index 36578008f313..5eae3d3e15f7 100644 --- a/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs +++ b/src/Network/Network/Models/Cortex/PSHubVirtualNetworkConnection.cs @@ -15,6 +15,7 @@ namespace Microsoft.Azure.Commands.Network.Models { using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; public class PSHubVirtualNetworkConnection : PSChildResource { @@ -27,7 +28,12 @@ public class PSHubVirtualNetworkConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } - [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] public PSRoutingConfiguration RoutingConfiguration { get; set; } + + [JsonIgnore] + public string RoutingConfigurationText + { + get { return JsonConvert.SerializeObject(RoutingConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs index dcd3090ee6cc..1268d8a700e9 100644 --- a/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs +++ b/src/Network/Network/Models/Cortex/PSP2SConnectionConfiguration.cs @@ -25,7 +25,6 @@ public class PSP2SConnectionConfiguration : PSChildResource public PSAddressSpace VpnClientAddressPool { get; set; } - [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] public PSRoutingConfiguration RoutingConfiguration { get; set; } [JsonIgnore] @@ -33,5 +32,11 @@ public string VpnClientAddressPoolText { get { return JsonConvert.SerializeObject(VpnClientAddressPool, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } + + [JsonIgnore] + public string RoutingConfigurationText + { + get { return JsonConvert.SerializeObject(RoutingConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs index 5176f06b542d..d9e0a2bbc34e 100644 --- a/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs +++ b/src/Network/Network/Models/Cortex/PSRoutingConfiguration.cs @@ -14,21 +14,31 @@ namespace Microsoft.Azure.Commands.Network.Models { - using System; using System.Collections.Generic; - using System.Text; using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; public class PSRoutingConfiguration { - [Ps1Xml(Label = "Associated Route Table", Target = ViewControl.Table)] + [Ps1Xml(Label = "AssociatedRouteTable", Target = ViewControl.Table, ScriptBlock = "$_.AssociatedRouteTable.Id")] public PSResourceId AssociatedRouteTable { get; set; } - [Ps1Xml(Label = "Propagated Route Tables", Target = ViewControl.Table)] public PSPropagatedRouteTable PropagatedRouteTables { get; set; } - [Ps1Xml(Label = "Vnet Routes", Target = ViewControl.Table)] + [Ps1Xml(Label = "VnetRoutes", Target = ViewControl.Table)] public PSVnetRoute VnetRoutes { get; set; } + + [JsonIgnore] + public string PropagatedRouteTablesText + { + get { return JsonConvert.SerializeObject(PropagatedRouteTables, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + + [JsonIgnore] + public string VnetRoutesText + { + get { return JsonConvert.SerializeObject(VnetRoutes, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } public class PSPropagatedRouteTable @@ -42,7 +52,6 @@ public class PSPropagatedRouteTable public class PSVnetRoute { - [Ps1Xml(Label = "Static Routes", Target = ViewControl.Table)] public List StaticRoutes { get; set; } } @@ -51,10 +60,10 @@ public class PSStaticRoute [Ps1Xml(Label = "Name", Target = ViewControl.Table)] public string Name { get; set; } - [Ps1Xml(Label = "Address Prefxes", Target = ViewControl.Table)] + [Ps1Xml(Label = "AddressPrefxes", Target = ViewControl.Table)] public List AddressPrefixes { get; set; } - [Ps1Xml(Label = "Next Hop IpAddress", Target = ViewControl.Table)] + [Ps1Xml(Label = "NextHopIpAddress", Target = ViewControl.Table)] public string NextHopIpAddress { get; set; } } } diff --git a/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs b/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs index 98ef43353ce2..13ea64336aba 100644 --- a/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs +++ b/src/Network/Network/Models/Cortex/PSVHubRouteTable.cs @@ -18,23 +18,39 @@ namespace Microsoft.Azure.Commands.Network.Models using System.Collections.Generic; using System.Text; using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; public class PSVHubRouteTable : PSChildResource { - [Ps1Xml(Label = "Routes", Target = ViewControl.Table)] public List Routes { get; set; } [Ps1Xml(Label = "Labels", Target = ViewControl.Table)] public List Labels { get; set; } - [Ps1Xml(Label = "Associated Connections", Target = ViewControl.Table)] - public List AssociatedConnections { get; set; } + public List AssociatedConnections { get; set; } - [Ps1Xml(Label = "Propagating Connections", Target = ViewControl.Table)] - public List PropagatingConnections { get; set; } + public List PropagatingConnections { get; set; } [Ps1Xml(Label = "Provisioning State", Target = ViewControl.Table)] public string ProvisioningState { get; set; } + + [JsonIgnore] + public string RoutesText + { + get { return JsonConvert.SerializeObject(Routes, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + + [JsonIgnore] + public string AssociatedConnectionsText + { + get { return JsonConvert.SerializeObject(AssociatedConnections, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } + + [JsonIgnore] + public string PropagatingConnectionsText + { + get { return JsonConvert.SerializeObject(PropagatingConnections, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } public class PSVHubRoute diff --git a/src/Network/Network/Models/Cortex/PSVpnConnection.cs b/src/Network/Network/Models/Cortex/PSVpnConnection.cs index 2214d7f82f0f..e624031e374c 100644 --- a/src/Network/Network/Models/Cortex/PSVpnConnection.cs +++ b/src/Network/Network/Models/Cortex/PSVpnConnection.cs @@ -16,6 +16,7 @@ namespace Microsoft.Azure.Commands.Network.Models { using System.Collections.Generic; using Microsoft.WindowsAzure.Commands.Common.Attributes; + using Newtonsoft.Json; public class PSVpnConnection : PSChildResource { @@ -59,7 +60,12 @@ public class PSVpnConnection : PSChildResource [Ps1Xml(Label = "Internet Security Enabled", Target = ViewControl.Table)] public bool EnableInternetSecurity { get; set; } - [Ps1Xml(Label = "Routing Configuration", Target = ViewControl.Table)] public PSRoutingConfiguration RoutingConfiguration { get; set; } + + [JsonIgnore] + public string RoutingConfigurationText + { + get { return JsonConvert.SerializeObject(RoutingConfiguration, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } + } } } diff --git a/src/Network/Network/Network.format.ps1xml b/src/Network/Network/Network.format.ps1xml index 4742826d50e5..f18efb388906 100644 --- a/src/Network/Network/Network.format.ps1xml +++ b/src/Network/Network/Network.format.ps1xml @@ -4180,6 +4180,10 @@ ProvisioningState + + + RoutingConfigurationText + @@ -4612,6 +4616,10 @@ VpnClientAddressPoolText + + + RoutingConfigurationText + @@ -4778,6 +4786,10 @@ ProvisioningState + + + RoutingConfigurationText + @@ -5388,6 +5400,74 @@ + + Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration + + Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration + + + + + + + + AssociatedRouteTable + + + + PropagatedRouteTablesText + + + + VnetRoutesText + + + + + + + + Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + + Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable + + + + + + + + Name + + + + Id + + + + ProvisioningState + + + + Labels + + + + RoutesText + + + + AssociatedConnectionsText + + + + PropagatingConnectionsText + + + + + + Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource diff --git a/src/Network/Network/help/Get-AzExpressRouteConnection.md b/src/Network/Network/help/Get-AzExpressRouteConnection.md index 192d3c91a3b3..1d85f01a3a97 100644 --- a/src/Network/Network/help/Get-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Get-AzExpressRouteConnection.md @@ -56,7 +56,24 @@ RoutingWeight : 20 ProvisioningState : Succeeded Name : testConnection Etag : W/"00000000-0000-0000-0000-000000000000" -Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection +Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection +EnableInternetSecurity : False +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a ExpressRouteSite in West US in "testRG" resource group in Azure. @@ -78,6 +95,23 @@ ProvisioningState : Succeeded Name : testConnection1 Etag : W/"00000000-0000-0000-0000-000000000000" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection1 +EnableInternetSecurity : False +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ExpressRouteCircuitPeeringId : Microsoft.Azure.Commands.Network.Models.PSResourceId AuthorizationKey : @@ -86,6 +120,23 @@ ProvisioningState : Succeeded Name : testConnection2 Etag : W/"00000000-0000-0000-0000-000000000000" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection2 +EnableInternetSecurity : False +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` This command will get all Connections in ExpressRoute "testExpressRoutegw" that start with "test" diff --git a/src/Network/Network/help/Get-AzP2sVpnGateway.md b/src/Network/Network/help/Get-AzP2sVpnGateway.md index a0059dc7b447..cf5aea3795b7 100644 --- a/src/Network/Network/help/Get-AzP2sVpnGateway.md +++ b/src/Network/Network/help/Get-AzP2sVpnGateway.md @@ -52,6 +52,22 @@ P2SConnectionConfigurations : [ "192.168.2.0/24" ] }, + "RoutingConfiguration": { + "AssociatedRouteTable": { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + }, "Name": "P2SConnectionConfigDefault", "Etag": "W/\"4b96e6a2-b4d8-46b3-9210-76d40f359bef\"", "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/p2sVpnGateways/683482 diff --git a/src/Network/Network/help/Get-AzVHubRouteTable.md b/src/Network/Network/help/Get-AzVHubRouteTable.md index 511b8275a355..95273f0e5d3c 100644 --- a/src/Network/Network/help/Get-AzVHubRouteTable.md +++ b/src/Network/Network/help/Get-AzVHubRouteTable.md @@ -13,17 +13,17 @@ Retrieves a hub route table resource associated with a VirtualHub. ## SYNTAX ### ByVHubRouteTableName (Default) -``` +```powershell Get-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObject -``` +```powershell Get-AzVHubRouteTable -Name -VirtualHub [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVHubRouteTableResourceId -``` +```powershell Get-AzVHubRouteTable -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -33,25 +33,70 @@ Gets the specified hub route table that is associated with the specified virtual ## EXAMPLES ### Example 1 + ```powershell PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" - PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" - PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" - PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" + +Name : testRouteTable +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/testRouteTable +ProvisioningState : Succeeded +Labels : {testLabel} +Routes : [ + { + "Name": "private-traffic", + "DestinationType": "CIDR", + "Destinations": [ + "10.30.0.0/16", + "10.40.0.0/16" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +AssociatedConnections : [] +PropagatingConnections : [] ``` This command gets the hub route table of the virtual hub. +### Example 2 + +```powershell +PS C:\> $rgName = "testRg" +PS C:\> $virtualHubName = "testHub" +PS C:\> Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName + + +Name : defaultRouteTable +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/defaultRouteTable +ProvisioningState : Succeeded +Labels : {testLabel} +Routes : [] +AssociatedConnections : [] +PropagatingConnections : [] + + +Name : noneRouteTable +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/noneRouteTable +ProvisioningState : Succeeded +Labels : {testLabel} +Routes : [] +AssociatedConnections : [] +PropagatingConnections : [] +``` + +This command lists all the hub route tables in the specified VirtualHub. + ## PARAMETERS ### -AsJob diff --git a/src/Network/Network/help/Get-AzVirtualHubVnetConnection.md b/src/Network/Network/help/Get-AzVirtualHubVnetConnection.md index a00e8c3f85d6..e164c369da7e 100644 --- a/src/Network/Network/help/Get-AzVirtualHubVnetConnection.md +++ b/src/Network/Network/help/Get-AzVirtualHubVnetConnection.md @@ -52,6 +52,22 @@ Name : testvnetconnection Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubVirtualNetworkConnections/testvnetconnection RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub in Central US in that resource group in Azure. A Virtual Network Connection will be created thereafter which will peer the Virtual Network to the Virtual Hub. @@ -74,6 +90,22 @@ Name : testvnetconnection Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubVirtualNetworkConnections/testvnetconnection RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub in Central US in that resource group in Azure. A Virtual Network Connection will be created thereafter which will peer the Virtual Network to the Virtual Hub. @@ -89,11 +121,43 @@ Name : testvnetconnection1 Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubVirtualNetworkConnections/testvnetconnection1 RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } Name : testvnetconnection2 Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubVirtualNetworkConnections/testvnetconnection2 RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` This cmdlet lists all the hub virtual network connections starting with "test" using its resource group name and the hub name. diff --git a/src/Network/Network/help/Get-AzVpnConnection.md b/src/Network/Network/help/Get-AzVpnConnection.md index 035628266be4..415f9b9504a1 100644 --- a/src/Network/Network/help/Get-AzVpnConnection.md +++ b/src/Network/Network/help/Get-AzVpnConnection.md @@ -65,7 +65,23 @@ EnableBgp : False ProvisioningState : testConnection Name : ps9709 Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +Id : /subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a VpnSite in West US in "testRG" resource group in Azure. @@ -92,7 +108,23 @@ EnableBgp : False ProvisioningState : testConnection Name : ps9709 Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection1 +Id : /subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection1 +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } RemoteVpnSite : Microsoft.Azure.Commands.Network.Models.PSResourceId SharedKey : @@ -106,7 +138,23 @@ EnableBgp : False ProvisioningState : testConnection Name : ps9709 Etag : W/"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" -Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection2 +Id : /subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection2 +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` This cmdlet gets all connections that start with "test". diff --git a/src/Network/Network/help/New-AzExpressRouteConnection.md b/src/Network/Network/help/New-AzExpressRouteConnection.md index 1f305c30bc61..4806b2ac5a6b 100644 --- a/src/Network/Network/help/New-AzExpressRouteConnection.md +++ b/src/Network/Network/help/New-AzExpressRouteConnection.md @@ -57,6 +57,22 @@ ProvisioningState : Succeeded Name : testConnection Etag : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub, Express Route gateway and an ExpressRoute circuit with private peering in West Central US in "testRG" resource group in Azure. @@ -291,3 +307,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/New-AzP2sVpnGateway.md b/src/Network/Network/help/New-AzP2sVpnGateway.md index 65a2107eae53..c68ee7aaa94d 100644 --- a/src/Network/Network/help/New-AzP2sVpnGateway.md +++ b/src/Network/Network/help/New-AzP2sVpnGateway.md @@ -92,6 +92,22 @@ P2SConnectionConfigurations : [ "192.168.2.0/24" ] }, + "RoutingConfiguration": { + "AssociatedRouteTable": { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + }, "Name": "P2SConnectionConfigDefault", "Etag": "W/\"4b96e6a2-b4d8-46b3-9210-76d40f359bef\"", "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/p2sVpnGateways/683482 @@ -361,3 +377,5 @@ Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration ## NOTES ## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/New-AzRoutingConfiguration.md b/src/Network/Network/help/New-AzRoutingConfiguration.md index 4398524334be..3330136c1068 100644 --- a/src/Network/Network/help/New-AzRoutingConfiguration.md +++ b/src/Network/Network/help/New-AzRoutingConfiguration.md @@ -12,8 +12,8 @@ Creates a RoutingConfiguration object. ## SYNTAX -``` -New-AzRoutingConfiguration -AssociatedRouteTable -Label -Id -StaticRoute [-DefaultProfile ] [] +```powershell +New-AzRoutingConfiguration -AssociatedRouteTable -Label -Id [-StaticRoute ] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -23,10 +23,39 @@ Creates a RoutingConfiguration object. ### Example 1 ```powershell -PS C:\> +PS C:\> $rgName = "testRg" +PS C:\> $virtualHubName = "testHub" +PS C:\> $rt1 = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name "defaultRouteTable" +PS C:\> $rt2 = Get-AzVHubRouteTable -ResourceGroupName $rgName -VirtualHubName $virtualHubName -Name "noneRouteTable" +PS C:\> $route1 = New-AzStaticRoute -Name "route1" -AddressPrefix @("10.20.0.0/16", "10.30.0.0/16")-NextHopIpAddress "10.90.0.5" +PS C:\> New-AzRoutingConfiguration -AssociatedRouteTable $rt1.Id -Label @("testLabel") -Id @($rt2.Id) -StaticRoute @($route1) + +AssociatedRouteTable : "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/defaultRouteTable" +PropagatedRouteTables : { + "Labels": [ + "testLabel" + ], + "Ids": [ + { + "Id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/noneRouteTable" + } + ] + } +VnetRoutes : { + "StaticRoutes": [ + { + "Name": "route1", + "AddressPrefixes": [ + "10.20.0.0/16", + "10.30.0.0/16" + ], + "NextHopIpAddress": "10.90.0.5" + } + ] + } ``` -The above command will create a RoutingConfiguration object which can then be added to a connection resource. +The above command will create a RoutingConfiguration object which can then be added to a connection resource. Static routes are only allowed with a HubVirtualNetworkConnection object. ## PARAMETERS diff --git a/src/Network/Network/help/New-AzStaticRoute.md b/src/Network/Network/help/New-AzStaticRoute.md index dc810f50e7cc..ffe5dd63c0fd 100644 --- a/src/Network/Network/help/New-AzStaticRoute.md +++ b/src/Network/Network/help/New-AzStaticRoute.md @@ -12,7 +12,7 @@ Creates a StaticRoute object which can then be added to a RoutingConfiguration o ## SYNTAX -``` +```powershell New-AzStaticRoute -Name -AddressPrefix -NextHopIpAddress [-DefaultProfile ] [] ``` @@ -23,7 +23,11 @@ Creates a StaticRoute object. ### Example 1 ```powershell -PS C:\> +PS C:\> New-AzStaticRoute -Name "route1" -AddressPrefix @("10.20.0.0/16", "10.30.0.0/16")-NextHopIpAddress "10.90.0.5" + +Name AddressPrefixes NextHopIpAddress +---- --------------- ---------------- +route1 {10.20.0.0/16, 10.30.0.0/16} 10.90.0.5 ``` The above command will create a StaticRoute object which can then be added to a RoutingConfiguration object. @@ -105,4 +109,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) \ No newline at end of file +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/New-AzVHubRoute.md b/src/Network/Network/help/New-AzVHubRoute.md index e985fe1dcd89..40f2831f039d 100644 --- a/src/Network/Network/help/New-AzVHubRoute.md +++ b/src/Network/Network/help/New-AzVHubRoute.md @@ -12,21 +12,50 @@ Creates a VHubRoute object which can be passed as parameter to the New-AzVHubRou ## SYNTAX -``` +```powershell New-AzVHubRoute -Name -Destination -DestinationType -NextHop -NextHopType [-DefaultProfile ] [] ``` ## DESCRIPTION + Creates a VHubRoute object. ## EXAMPLES ### Example 1 + +```powershell +PS C:\> $rgName = "testRg" +PS C:\> $firewallName = "testFirewall" +PS C:\> $firewall = Get-AzFirewall -Name $firewallName -ResourceGroupName $rgName +PS C:\> New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" + +Name : private-traffic +DestinationType : CIDR +Destinations : {10.30.0.0/16, 10.40.0.0/16} +NextHopType : ResourceId +NextHop : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall +``` + +The above command will create a VHubRoute object with nextHop as the specified Firewall which can then be added to a VHubRouteTable resource. + +### Example 2 + ```powershell -PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" +PS C:\> $rgName = "testRg" +PS C:\> $hubName = "testHub" +PS C:\> $hubVnetConnName = "testHubVnetConn" +PS C:\> $hubVnetConnection = Get-AzVirtualHubVnetConnection -Name $hubVnetConnName -ParentResourceName $hubName -ResourceGroupName $rgName +PS C:\> New-AzVHubRoute -Name "nva-traffic" -Destination @("10.20.0.0/16", "10.50.0.0/16") -DestinationType "CIDR" -NextHop $hubVnetConnection.Id -NextHopType "ResourceId" + +Name : private-traffic +DestinationType : CIDR +Destinations : {10.30.0.0/16, 10.40.0.0/16} +NextHopType : ResourceId +NextHop : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubVirtualNetworkConnections/testHubVnetConn ``` -The above command will create a VHubRoute object which can then be added to a VHubRouteTable resource. +The above command will create a VHubRoute object with nextHop as the specified hubVnetConnection which can then be added to a VHubRouteTable resource. ## PARAMETERS diff --git a/src/Network/Network/help/New-AzVHubRouteTable.md b/src/Network/Network/help/New-AzVHubRouteTable.md index 62a642dcbe32..8ebe2013f1f1 100644 --- a/src/Network/Network/help/New-AzVHubRouteTable.md +++ b/src/Network/Network/help/New-AzVHubRouteTable.md @@ -13,17 +13,20 @@ Creates a hub route table resource associated with a VirtualHub. ## SYNTAX ### ByVirtualHubName (Default) -``` + +```powershell New-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObject -``` + +```powershell New-AzVHubRouteTable -Name -ParentObject -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubResourceId -``` + +```powershell New-AzVHubRouteTable -ParentResourceId -Name -Route -Label [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -33,6 +36,7 @@ Creates the specified route table that is associated with the specified virtual ## EXAMPLES ### Example 1 + ```powershell PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" @@ -47,6 +51,25 @@ PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "test PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") + +Name : testRouteTable +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/testRouteTable +ProvisioningState : Succeeded +Labels : {testLabel} +Routes : [ + { + "Name": "private-traffic", + "DestinationType": "CIDR", + "Destinations": [ + "10.30.0.0/16", + "10.40.0.0/16" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/RinagulaSampleRG/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub" + } + ] +AssociatedConnections : [] +PropagatingConnections : [] ``` This command creates a hub route table of the virtual hub. diff --git a/src/Network/Network/help/New-AzVirtualHubVnetConnection.md b/src/Network/Network/help/New-AzVirtualHubVnetConnection.md index 861cb5e2e94e..0ade0d296c8f 100644 --- a/src/Network/Network/help/New-AzVirtualHubVnetConnection.md +++ b/src/Network/Network/help/New-AzVirtualHubVnetConnection.md @@ -75,6 +75,22 @@ Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/pro RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork EnableInternetSecurity : False ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub in Central US in that resource group in Azure. A Virtual Network Connection will be created thereafter which will peer the Virtual Network to the Virtual Hub. @@ -297,3 +313,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Get-AzVirtualHubVnetConnection](./Get-AzVirtualHubVnetConnection.md) [Remove-AzVirtualHubVnetConnection](./Remove-AzVirtualHubVnetConnection.md) + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/New-AzVpnConnection.md b/src/Network/Network/help/New-AzVpnConnection.md index a9d240e654a1..63455abe5500 100644 --- a/src/Network/Network/help/New-AzVpnConnection.md +++ b/src/Network/Network/help/New-AzVpnConnection.md @@ -100,7 +100,23 @@ UseLocalAzureIpAddress : False ProvisioningState : testConnection Name : ps9709 Etag : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8" -Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +Id : /subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a VpnSite in West US in "testRG" resource group in Azure. @@ -476,3 +492,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-AzVpnConnection](./Remove-AzVpnConnection.md) [Update-AzVpnConnection](./Update-AzVpnConnection.md) + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/Remove-AzVHubRouteTable.md b/src/Network/Network/help/Remove-AzVHubRouteTable.md index eea4450ddce7..70de2efdb2b1 100644 --- a/src/Network/Network/help/Remove-AzVHubRouteTable.md +++ b/src/Network/Network/help/Remove-AzVHubRouteTable.md @@ -13,22 +13,22 @@ Delete a hub route table resource associated with a VirtualHub. ## SYNTAX ### ByVHubRouteTableName (Default) -``` +```powershell Remove-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObject -``` +```powershell Remove-AzVHubRouteTable -Name -VirtualHub [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVHubRouteTableObject -``` +```powershell Remove-AzVHubRouteTable [-InputObject ] [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVHubRouteTableResourceId -``` +```powershell Remove-AzVHubRouteTable -ResourceId [-AsJob] [-Force] [-PassThru] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -39,19 +39,6 @@ Deletes the specified hub route table that is associated with the specified virt ### Example 1 ```powershell -PS C:\> New-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" -Location "westcentralus" -VirtualWANType "Standard" -AllowVnetToVnetTraffic -AllowBranchToBranchTraffic -PS C:\> $virtualWan = Get-AzVirtualWan -ResourceGroupName "testRg" -Name "testWan" - -PS C:\> New-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" -Location "westcentralus" -AddressPrefix "10.0.0.0/16" -VirtualWan $virtualWan -PS C:\> $virtualHub = Get-AzVirtualHub -ResourceGroupName "testRg" -Name "testHub" - -PS C:\> $fwIp = New-AzFirewallHubPublicIpAddress -Count 1 -PS C:\> $hubIpAddresses = New-AzFirewallHubIpAddress -PublicIP $fwIp -PS C:\> New-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" -Location "westcentralus" -Sku AZFW_Hub -VirtualHubId $virtualHub.Id -HubIPAddress $hubIpAddresses -PS C:\> $firewall = Get-AzFirewall -Name "testFirewall" -ResourceGroupName "testRg" - -PS C:\> $route1 = New-AzVHubRoute -Name "private-traffic" -Destination @("10.30.0.0/16", "10.40.0.0/16") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" -PS C:\> New-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route1) -Label @("testLabel") PS C:\> $testRouteTable = Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" PS C:\> Remove-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" ``` diff --git a/src/Network/Network/help/Set-AzExpressRouteConnection.md b/src/Network/Network/help/Set-AzExpressRouteConnection.md index c602289bc79f..2e2cde27e645 100644 --- a/src/Network/Network/help/Set-AzExpressRouteConnection.md +++ b/src/Network/Network/help/Set-AzExpressRouteConnection.md @@ -59,6 +59,22 @@ ProvisioningState : Succeeded Name : testConnection Etag : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/ExpressRouteGateways/testExpressRoutegw/expressRouteConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a ExpressRouteSite in West US in "testRG" resource group in Azure. @@ -281,3 +297,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/Update-AzP2sVpnGateway.md b/src/Network/Network/help/Update-AzP2sVpnGateway.md index aaeb22048d44..c97cad9c39a0 100644 --- a/src/Network/Network/help/Update-AzP2sVpnGateway.md +++ b/src/Network/Network/help/Update-AzP2sVpnGateway.md @@ -96,6 +96,22 @@ P2SConnectionConfigurations : [ "101.10.0.0/16" ] }, + "RoutingConfiguration": { + "AssociatedRouteTable": { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/virtualHubs/WestUsVirtualHub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + }, "Name": "P2SConnectionConfigDefault", "Etag": "W/\"d7debc2f-ccbb-4f00-bddc-42c99b52fda3\"", "Id": "/subscriptions/b1f1deed-af60-4bab-9223-65d340462e24/resourceGroups/P2SCortexGATesting/providers/Microsoft.Network/p2sVpnGateways/683482 @@ -350,3 +366,5 @@ Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration ## NOTES ## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/Update-AzVHubRouteTable.md b/src/Network/Network/help/Update-AzVHubRouteTable.md index c016b3a54cbd..a0b877098381 100644 --- a/src/Network/Network/help/Update-AzVHubRouteTable.md +++ b/src/Network/Network/help/Update-AzVHubRouteTable.md @@ -13,22 +13,22 @@ Delete a hub route table resource associated with a VirtualHub. ## SYNTAX ### ByVHubRouteTableName (Default) -``` +```powershell Update-AzVHubRouteTable -ResourceGroupName -ParentResourceName -Name [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVirtualHubObject -``` +```powershell Update-AzVHubRouteTable -Name -ParentObject [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVHubRouteTableObject -``` +```powershell Update-AzVHubRouteTable -InputObject [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByVHubRouteTableResourceId -``` +```powershell Update-AzVHubRouteTable -ResourceId [-Route ] [-Label ] [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -57,6 +57,24 @@ PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHu PS C:\> $route2 = New-AzVHubRoute -Name "internet-traffic" -Destination @("0.0.0.0/0") -DestinationType "CIDR" -NextHop $firewall.Id -NextHopType "ResourceId" PS C:\> Update-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" -Route @($route2) PS C:\> Get-AzVHubRouteTable -ResourceGroupName "testRg" -VirtualHubName "testHub" -Name "testRouteTable" + +Name : testRouteTable +Id : /subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/testHub/hubRouteTables/testRouteTable +ProvisioningState : Succeeded +Labels : {testLabel} +Routes : [ + { + "Name": "internet-traffic", + "DestinationType": "CIDR", + "Destinations": [ + "0.0.0.0/0" + ], + "NextHopType": "ResourceId", + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" + } + ] +AssociatedConnections : [] +PropagatingConnections : [] ``` This command deletes the hub route table of the virtual hub. diff --git a/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md b/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md index 12ca95050a8b..3f9d15616518 100644 --- a/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md +++ b/src/Network/Network/help/Update-AzVirtualHubVnetConnection.md @@ -52,6 +52,22 @@ Id : /subscriptions/{subscriptionId}/resourceGroups/testRG/p RemoteVirtualNetwork : /subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualNetworks/MyVirtualNetwork EnableInternetSecurity : True ProvisioningState : Succeeded +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + }, + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRG/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub in Central US in that resource group in Azure. A Virtual Network Connection is also created which is peer the Virtual Network to the Virtual Hub. This Virtual Network Connection is then updated to enable internet security. @@ -229,4 +245,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -## RELATED LINKS \ No newline at end of file +## RELATED LINKS + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/src/Network/Network/help/Update-AzVpnConnection.md b/src/Network/Network/help/Update-AzVpnConnection.md index 8f4bfc1aa5ca..a06e8f558112 100644 --- a/src/Network/Network/help/Update-AzVpnConnection.md +++ b/src/Network/Network/help/Update-AzVpnConnection.md @@ -75,6 +75,22 @@ ProvisioningState : testConnection Name : ps9709 Etag : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a VpnSite in West US in "testRG" resource group in Azure. @@ -114,6 +130,22 @@ ProvisioningState : testConnection Name : ps9709 Etag : W/"4580a2e2-2fab-4cff-88eb-92013a76b5a8" Id : /subscriptions/{subscriptionId}/resourceGroups/ps9361/providers/Microsoft.Network/vpnGateways/testvpngw/vpnConnections/testConnection +RoutingConfiguration : { + "AssociatedRouteTable": { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + "PropagatedRouteTables": { + "Labels": [], + "Ids": [ + { + "Id": "/subscriptions/{subscriptionId}/resourceGroups/testRg/providers/Microsoft.Network/virtualHubs/westushub/hubRouteTables/defaultRouteTable" + } + ] + }, + "VnetRoutes": { + "StaticRoutes": [] + } + } ``` The above will create a resource group, Virtual WAN, Virtual Network, Virtual Hub and a VpnSite in West US in "testRG" resource group in Azure. @@ -418,3 +450,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [New-AzVpnConnection](./New-AzVpnConnection.md) [Remove-AzVpnConnection](./Remove-AzVpnConnection.md) + +[New-AzRoutingConfiguration](./New-AzRoutingConfiguration.md) diff --git a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv index 5b80b3b6f0a9..0bb83723b3f2 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Network/SignatureIssues.csv @@ -351,3 +351,6 @@ "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand","New-AzFirewallPolicyThreatIntelWhitelist","1","8100","New-AzFirewallPolicyThreatIntelWhitelist Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand","New-AzFirewallPolicyNatRuleCollection","1","8100","New-AzFirewallPolicyNatRuleCollection Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand","New-AzFirewallPolicyNatRule","1","8100","New-AzFirewallPolicyNatRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand","New-AzRoutingConfiguration","1","8100","New-AzRoutingConfiguration Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand","New-AzStaticRoute","1","8100","New-AzStaticRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Network.dll","Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand","New-AzVHubRoute","1","8100","New-AzVHubRoute Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" \ No newline at end of file From f838ad8a89ba90e0b436f26521066e7e6ce3fcf8 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Mon, 15 Jun 2020 22:19:49 -0700 Subject: [PATCH 11/15] handle resource not found in Get --- .../VHubRouteTableBaseCmdlet.cs | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs index bbdd221e90de..e864860bc4c8 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs @@ -17,6 +17,7 @@ namespace Microsoft.Azure.Commands.Network using AutoMapper; using Microsoft.Azure.Commands.Network.Models; using Microsoft.Azure.Management.Network; + using System; using System.Collections.Generic; using System.Management.Automation; using MNM = Microsoft.Azure.Management.Network.Models; @@ -40,10 +41,20 @@ public PSVHubRouteTable ToPsVHubRouteTable(MNM.HubRouteTable routeTable) public PSVHubRouteTable GetVHubRouteTable(string resourceGroupName, string virtualHubName, string name) { - var routeTable = VHubRouteTableClient.Get(resourceGroupName, virtualHubName, name); - var psVHubRouteTable = ToPsVHubRouteTable(routeTable); - - return psVHubRouteTable; + try + { + var routeTable = VHubRouteTableClient.Get(resourceGroupName, virtualHubName, name); + var psVHubRouteTable = ToPsVHubRouteTable(routeTable); + return psVHubRouteTable; + } + catch (Exception ex) + { + if (ex is Microsoft.Azure.Management.Network.Models.ErrorException || ex is Rest.Azure.CloudException) + { + return null; + } + throw; + } } public List ListVHubRouteTables(string resourceGroupName, string virtualHubName) From 613fe5dc0009f24daaafec33061ead44e9a23dab Mon Sep 17 00:00:00 2001 From: Ritvika Reddy Nagula Date: Tue, 16 Jun 2020 00:03:01 -0700 Subject: [PATCH 12/15] Stub fake sub and rg in help file --- src/Network/Network/help/New-AzVHubRouteTable.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/Network/help/New-AzVHubRouteTable.md b/src/Network/Network/help/New-AzVHubRouteTable.md index 8ebe2013f1f1..e5314712f048 100644 --- a/src/Network/Network/help/New-AzVHubRouteTable.md +++ b/src/Network/Network/help/New-AzVHubRouteTable.md @@ -65,7 +65,7 @@ Routes : [ "10.40.0.0/16" ], "NextHopType": "ResourceId", - "NextHop": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/RinagulaSampleRG/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub" + "NextHop": "/subscriptions/testSub/resourceGroups/testRg/providers/Microsoft.Network/azureFirewalls/testFirewall" } ] AssociatedConnections : [] @@ -267,4 +267,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable [Remove-AzVHubRouteTable](./Remove-AzVHubRouteTable.md) -[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) \ No newline at end of file +[Update-AzVHubRouteTable](./Update-AzVHubRouteTable.md) From 52bfafcf74026f08be4330af2f8dfea894cd1fa9 Mon Sep 17 00:00:00 2001 From: Anton Evseev Date: Tue, 16 Jun 2020 11:00:52 +0300 Subject: [PATCH 13/15] Update Network SDK version --- src/Batch/Batch.Test/Batch.Test.csproj | 2 +- .../CognitiveServices.Test/CognitiveServices.Test.csproj | 2 +- src/Compute/Compute.Test/Compute.Test.csproj | 2 +- src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj | 2 +- .../DataLakeStore.Test/DataLakeStore.Test.csproj | 2 +- src/Dns/Dns.Test/Dns.Test.csproj | 2 +- src/KeyVault/KeyVault.Test/KeyVault.Test.csproj | 2 +- src/Monitor/Monitor.Test/Monitor.Test.csproj | 2 +- src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj | 2 +- src/Network/Network.Test/Network.Test.csproj | 2 +- src/Network/Network/Network.csproj | 2 +- src/PrivateDns/PrivateDns.Test/PrivateDns.Test.csproj | 2 +- .../RecoveryServices.Backup.Test.csproj | 2 +- .../RecoveryServices.SiteRecovery.Test.csproj | 2 +- src/Sql/Sql.Test/Sql.Test.csproj | 4 ++-- .../SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj | 2 +- 16 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Batch/Batch.Test/Batch.Test.csproj b/src/Batch/Batch.Test/Batch.Test.csproj index 8884b084ab05..81d75170c446 100644 --- a/src/Batch/Batch.Test/Batch.Test.csproj +++ b/src/Batch/Batch.Test/Batch.Test.csproj @@ -17,7 +17,7 @@ - + diff --git a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj index 3643eb16fa16..7b8705936dd2 100644 --- a/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj +++ b/src/CognitiveServices/CognitiveServices.Test/CognitiveServices.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj index c7db0ac03111..2e7d4f5500f1 100644 --- a/src/Compute/Compute.Test/Compute.Test.csproj +++ b/src/Compute/Compute.Test/Compute.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj index 18e115205e84..807a48470c51 100644 --- a/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj +++ b/src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj @@ -5,6 +5,6 @@ - + \ No newline at end of file diff --git a/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj b/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj index a60596facac9..051e24318f44 100644 --- a/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj +++ b/src/DataLakeStore/DataLakeStore.Test/DataLakeStore.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Dns/Dns.Test/Dns.Test.csproj b/src/Dns/Dns.Test/Dns.Test.csproj index fb89c160301d..692f82e0d20c 100644 --- a/src/Dns/Dns.Test/Dns.Test.csproj +++ b/src/Dns/Dns.Test/Dns.Test.csproj @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj index 188cc9972a83..b22910daa6a8 100644 --- a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj +++ b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Monitor/Monitor.Test/Monitor.Test.csproj b/src/Monitor/Monitor.Test/Monitor.Test.csproj index 4087e009de81..f9fbb974fba9 100644 --- a/src/Monitor/Monitor.Test/Monitor.Test.csproj +++ b/src/Monitor/Monitor.Test/Monitor.Test.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj index bf1146645c3f..691aad245616 100644 --- a/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj +++ b/src/NetAppFiles/NetAppFiles.Test/NetAppFiles.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index 0e3c28928899..9269a5b96d70 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/Network/Network/Network.csproj b/src/Network/Network/Network.csproj index 764ad89837ed..f88a5f0a86ea 100644 --- a/src/Network/Network/Network.csproj +++ b/src/Network/Network/Network.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/PrivateDns/PrivateDns.Test/PrivateDns.Test.csproj b/src/PrivateDns/PrivateDns.Test/PrivateDns.Test.csproj index 262d87fe7e92..73f4fe3c2e47 100644 --- a/src/PrivateDns/PrivateDns.Test/PrivateDns.Test.csproj +++ b/src/PrivateDns/PrivateDns.Test/PrivateDns.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj index f650a4e4e1b1..d9c7605c2c8f 100644 --- a/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.Backup.Test/RecoveryServices.Backup.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj index 87d91ddbf663..7705d59ef82b 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/RecoveryServices.SiteRecovery.Test.csproj @@ -12,7 +12,7 @@ - + diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index 7f14e521c077..19bf693cc7ee 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -1,4 +1,4 @@ - + Sql @@ -13,7 +13,7 @@ - + diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj index 7a19c3277964..d5de6be599f5 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Test/SqlVirtualMachine.Test.csproj @@ -16,7 +16,7 @@ - + From e65ce711f56bc5681b39b7d85c3f21511c2dcf70 Mon Sep 17 00:00:00 2001 From: Anton Evseev Date: Tue, 16 Jun 2020 11:39:22 +0300 Subject: [PATCH 14/15] Add mapping in HubVirtualNetworkConnection cmdlets --- .../NewAzureRmHubVirtualNetworkConnectionCommand.cs | 2 +- .../UpdateAzureRmHubVirtualNetworkConnectionCommand.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs b/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs index 281409d70c7b..3901fc92c12c 100644 --- a/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs +++ b/src/Network/Network/Cortex/HubVnetConnection/NewAzureRmHubVirtualNetworkConnectionCommand.cs @@ -189,7 +189,7 @@ public override void Execute() if (this.RoutingConfiguration != null) { - hubVnetConnection.RoutingConfiguration = RoutingConfiguration; + hubVnetConnection.RoutingConfiguration = NetworkResourceManagerProfile.Mapper.Map(RoutingConfiguration); } List resourceIds = new List(); diff --git a/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs b/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs index 0ff66de178ad..dd9da8f23159 100644 --- a/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs +++ b/src/Network/Network/Cortex/HubVnetConnection/UpdateAzureRmHubVirtualNetworkConnectionCommand.cs @@ -132,7 +132,7 @@ public override void Execute() if (this.RoutingConfiguration != null) { - connectionToModify.RoutingConfiguration = RoutingConfiguration; + connectionToModify.RoutingConfiguration = NetworkResourceManagerProfile.Mapper.Map(RoutingConfiguration); } List resourceIds = new List(); From 6c09848253f70872537f5540c19aeb00ea50d0c1 Mon Sep 17 00:00:00 2001 From: Ritvika Nagula Date: Tue, 16 Jun 2020 11:40:17 -0700 Subject: [PATCH 15/15] fix update handling --- .../TestVHubRouteTableCRUD.json | 6038 ++++++++--------- .../UpdateAzureRmVHubRouteTableCommand.cs | 13 +- .../VHubRouteTableBaseCmdlet.cs | 18 +- 3 files changed, 2719 insertions(+), 3350 deletions(-) diff --git a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json index 9a259a67b4b8..7a1b205d51e2 100644 --- a/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json +++ b/src/Network/Network.Test/SessionRecords/Commands.Network.Test.ScenarioTests.CortexTests/TestVHubRouteTableCRUD.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps5557?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNTU1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps303?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzMzAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b31243ee-98f3-4709-b55b-43691622f405" + "5be755a8-dc8a-4622-9d7f-9ea4b82ab22d" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + "67599319-f176-4574-9245-e9910f264982" ], "x-ms-correlation-request-id": [ - "c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + "67599319-f176-4574-9245-e9910f264982" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073636Z:c3f5eedf-bd19-4764-adbb-5ef80bcb3904" + "WESTUS:20200616T191847Z:67599319-f176-4574-9245-e9910f264982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:36 GMT" + "Tue, 16 Jun 2020 19:18:46 GMT" ], "Content-Length": [ - "172" + "170" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557\",\r\n \"name\": \"ps5557\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303\",\r\n \"name\": \"ps303\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c7701ff-3c91-4a65-ac53-fda743394dbe" + "00752514-6d51-40a2-bb6f-6a1d488a5ee3" ], "Accept-Language": [ "en-US" @@ -82,7 +82,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "20e8d7e5-e451-47aa-b771-3e150a2a2694" + "ecd14df6-8148-44aa-8221-f2511145b7bf" ], "x-ms-correlation-request-id": [ - "20e8d7e5-e451-47aa-b771-3e150a2a2694" + "ecd14df6-8148-44aa-8221-f2511145b7bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073637Z:20e8d7e5-e451-47aa-b771-3e150a2a2694" + "WESTUS:20200616T191847Z:ecd14df6-8148-44aa-8221-f2511145b7bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:37 GMT" + "Tue, 16 Jun 2020 19:18:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,15 +120,15 @@ "-1" ], "Content-Length": [ - "214" + "213" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps3759' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualWans/ps4524' under resource group 'ps303' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -136,7 +136,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -147,16 +147,16 @@ "no-cache" ], "ETag": [ - "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + "W/\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\"" ], "x-ms-request-id": [ - "36b2eeee-9248-423c-9570-456755f4487d" + "57557160-b2e2-4785-9586-f6eb8ba6e782" ], "x-ms-correlation-request-id": [ - "1aeb961b-5e2b-4498-80ef-d8c32ee47a0b" + "da9f8b9d-6083-438d-b339-34b93a6f0552" ], "x-ms-arm-service-request-id": [ - "7b7f5512-42f6-4dd1-aa9d-af7e63151a1a" + "49c7f953-304e-46ee-99ca-586ba3f68952" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +166,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073650Z:1aeb961b-5e2b-4498-80ef-d8c32ee47a0b" + "WESTUS:20200616T191901Z:da9f8b9d-6083-438d-b339-34b93a6f0552" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:50 GMT" + "Tue, 16 Jun 2020 19:19:00 GMT" ], "Content-Length": [ - "502" + "501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,17 +187,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4524\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\",\r\n \"etag\": \"W/\\\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73ca471c-7624-4926-aa28-08aac7cfa5d4" + "b9118f85-7ca6-45f4-b670-a6f07b1f4cc2" ], "Accept-Language": [ "en-US" @@ -206,7 +206,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -217,16 +217,16 @@ "no-cache" ], "ETag": [ - "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + "W/\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\"" ], "x-ms-request-id": [ - "1987fd63-dde6-41d2-a292-2eee8b52257d" + "65f65238-6baf-42b0-a2d8-64588e5338ef" ], "x-ms-correlation-request-id": [ - "3a07cc46-c44e-4aae-bf51-97959e625204" + "740cb2eb-359b-49a1-9eb2-76ccaceeea5f" ], "x-ms-arm-service-request-id": [ - "0043a3df-a7e8-4d5a-8ab0-e0f796e5b408" + "4a2b22ab-bbfc-4197-b3c0-5bf3afeb14bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +236,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073650Z:3a07cc46-c44e-4aae-bf51-97959e625204" + "WESTUS:20200616T191901Z:740cb2eb-359b-49a1-9eb2-76ccaceeea5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:50 GMT" + "Tue, 16 Jun 2020 19:19:00 GMT" ], "Content-Length": [ - "502" + "501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,17 +257,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4524\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\",\r\n \"etag\": \"W/\\\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27846823-1ec4-45cd-b97f-023961737bfe" + "babe2c16-df87-4ff8-b2a0-c1af6d8a3d6e" ], "Accept-Language": [ "en-US" @@ -276,7 +276,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -287,16 +287,16 @@ "no-cache" ], "ETag": [ - "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + "W/\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\"" ], "x-ms-request-id": [ - "23b916f2-1ced-472e-8b96-1b686161ef6a" + "8524ca89-5e66-4cdd-a9f5-7dc9c8a352b5" ], "x-ms-correlation-request-id": [ - "90c3d050-1d73-4c48-8460-0289eddca6ea" + "a27a2f84-b3b0-4c03-a1e9-ffafe59ce1f5" ], "x-ms-arm-service-request-id": [ - "d08e20ad-0c49-4037-b32f-11fbef2ed2e7" + "64298018-f369-4d54-8a02-54716e64b786" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,16 +309,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073651Z:90c3d050-1d73-4c48-8460-0289eddca6ea" + "WESTUS:20200616T191901Z:a27a2f84-b3b0-4c03-a1e9-ffafe59ce1f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:51 GMT" + "Tue, 16 Jun 2020 19:19:01 GMT" ], "Content-Length": [ - "502" + "501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,17 +327,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4524\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\",\r\n \"etag\": \"W/\\\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4846b869-d8cb-4cf9-b73d-7fed49e019a9" + "8210a18e-5616-4d52-afbc-110904928cbd" ], "Accept-Language": [ "en-US" @@ -346,7 +346,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -357,16 +357,16 @@ "no-cache" ], "ETag": [ - "W/\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\"" + "W/\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\"" ], "x-ms-request-id": [ - "fe9ffc93-ea4c-424e-a13f-e8c216a54a3a" + "d8439bb1-a429-4bd9-ba87-63497eb3add1" ], "x-ms-correlation-request-id": [ - "2aeff750-56f1-41c0-af5e-642bd4641edb" + "0af71f9c-a5c6-44b3-9987-fb0bfdd018a1" ], "x-ms-arm-service-request-id": [ - "3c272599-fdd7-476c-84dc-acd045262ea2" + "8dd72a95-e2fe-4342-b6fb-3e04b1334e0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,19 +376,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11977" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073651Z:2aeff750-56f1-41c0-af5e-642bd4641edb" + "WESTUS:20200616T191902Z:0af71f9c-a5c6-44b3-9987-fb0bfdd018a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:50 GMT" + "Tue, 16 Jun 2020 19:19:01 GMT" ], "Content-Length": [ - "502" + "501" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,17 +397,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"b6406a6b-ac3c-4608-a9ce-84e7a8ca02f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4524\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\",\r\n \"etag\": \"W/\\\"fa1ac4f1-0cd7-4f7d-b5f5-f0c101826b08\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"allowBranchToBranchTraffic\": true,\r\n \"allowVnetToVnetTraffic\": true\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "754b76b6-9fb7-49f0-a5a8-372ff29d221d" + "b017a50b-8abd-4334-bc32-67f2c00e35d8" ], "Accept-Language": [ "en-US" @@ -416,7 +416,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -436,19 +436,19 @@ "10" ], "x-ms-request-id": [ - "7d7cd781-7f35-4a25-bfe8-17c5a15c853f" + "21f43592-187c-4ade-8130-5e8ce293fd87" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/7d7cd781-7f35-4a25-bfe8-17c5a15c853f?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/21f43592-187c-4ade-8130-5e8ce293fd87?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "d2772b6c-f189-41ff-b7b8-2ea5b2e9467d" + "a1513b55-3358-4217-a906-2fe77cc35a95" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "4262afc2-8249-4470-87c7-c20887fb7224" + "83c76fb0-d991-44ef-a0ee-aff79bb24e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -458,19 +458,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073640Z:d2772b6c-f189-41ff-b7b8-2ea5b2e9467d" + "WESTUS:20200616T191851Z:a1513b55-3358-4217-a906-2fe77cc35a95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:40 GMT" + "Tue, 16 Jun 2020 19:18:50 GMT" ], "Content-Length": [ - "501" + "500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -479,12 +479,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps3759\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\",\r\n \"etag\": \"W/\\\"3411a3a8-f5f2-4d02-9a90-50cfef5a90ae\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps4524\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\",\r\n \"etag\": \"W/\\\"9670e45d-4d5d-43d9-a7a2-b3d20bfd1985\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/7d7cd781-7f35-4a25-bfe8-17c5a15c853f?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzdkN2NkNzgxLTdmMzUtNGEyNS1iZmU4LTE3YzVhMTVjODUzZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/21f43592-187c-4ade-8130-5e8ce293fd87?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzIxZjQzNTkyLTE4N2MtNGFkZS04MTMwLTVlOGNlMjkzZmQ4Nz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -492,7 +492,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -503,13 +503,13 @@ "no-cache" ], "x-ms-request-id": [ - "1f3cdf6b-defe-4c98-b7f4-019b19506fc7" + "c7c18602-6cff-4df4-b042-583159b2716e" ], "x-ms-correlation-request-id": [ - "644230b4-3f21-450a-9ff5-4dbfff121e04" + "62f402c5-8bd7-48ac-8179-8b34932c8036" ], "x-ms-arm-service-request-id": [ - "2a2cecf2-c9be-46fd-9e37-065f33223861" + "150a7bac-f9e8-48d0-8b32-080a19629823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -519,16 +519,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073650Z:644230b4-3f21-450a-9ff5-4dbfff121e04" + "WESTUS:20200616T191901Z:62f402c5-8bd7-48ac-8179-8b34932c8036" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:50 GMT" + "Tue, 16 Jun 2020 19:19:00 GMT" ], "Content-Length": [ "29" @@ -544,13 +544,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4cc52fcc-88e2-4e5f-a624-ebfbcdbae1e3" + "d5304066-4863-46bc-a125-16eeffb552aa" ], "Accept-Language": [ "en-US" @@ -559,7 +559,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -573,13 +573,13 @@ "gateway" ], "x-ms-request-id": [ - "36bf7ddc-5582-4353-8603-15c670f9db67" + "5cc2042a-4988-44bd-9b45-1b7d8409ab8a" ], "x-ms-correlation-request-id": [ - "36bf7ddc-5582-4353-8603-15c670f9db67" + "5cc2042a-4988-44bd-9b45-1b7d8409ab8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073651Z:36bf7ddc-5582-4353-8603-15c670f9db67" + "WESTUS:20200616T191902Z:5cc2042a-4988-44bd-9b45-1b7d8409ab8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -588,7 +588,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:51 GMT" + "Tue, 16 Jun 2020 19:19:01 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,15 +597,15 @@ "-1" ], "Content-Length": [ - "214" + "213" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps7830' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualHubs/ps8124' under resource group 'ps303' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -613,7 +613,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -624,13 +624,13 @@ "no-cache" ], "x-ms-request-id": [ - "1fc36c4c-7548-4089-be34-83da6be4cfbd" + "119df6d6-dbac-4165-b140-ae51f0781559" ], "x-ms-correlation-request-id": [ - "6f01ac74-58bf-4154-923f-5084a16a5823" + "fd7ee189-c75c-4687-b738-03a8776b56d7" ], "x-ms-arm-service-request-id": [ - "65ff2dd0-4f6c-4f83-979c-549c56b7a692" + "966809c2-8f61-497d-9d8b-2d0d2771b60a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -640,19 +640,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11978" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074024Z:6f01ac74-58bf-4154-923f-5084a16a5823" + "WESTUS:20200616T192226Z:fd7ee189-c75c-4687-b738-03a8776b56d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:23 GMT" + "Tue, 16 Jun 2020 19:22:26 GMT" ], "Content-Length": [ - "758" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -661,17 +661,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"e2ff621e-5385-4363-a56c-a19c89d3f30b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "568f79c4-6313-494c-a6b9-912ec7677de4" + "6d69a080-ec30-41a5-bc8b-65bd0573719e" ], "Accept-Language": [ "en-US" @@ -680,7 +680,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -691,13 +691,13 @@ "no-cache" ], "x-ms-request-id": [ - "aa29f196-2660-42aa-9ff6-84f2177b3485" + "791b5bdd-8b63-43f9-938e-8111df3ce7b8" ], "x-ms-correlation-request-id": [ - "08397ffd-fb97-4048-b822-004cee166449" + "3aaaff14-370b-4bc8-aeec-1c8754c7f2d8" ], "x-ms-arm-service-request-id": [ - "d2740190-c773-4a1c-8181-911909cf6852" + "16353d52-319e-4ca2-9adb-fe2c538b182d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -707,19 +707,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11959" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074024Z:08397ffd-fb97-4048-b822-004cee166449" + "WESTUS:20200616T192226Z:3aaaff14-370b-4bc8-aeec-1c8754c7f2d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:23 GMT" + "Tue, 16 Jun 2020 19:22:26 GMT" ], "Content-Length": [ - "758" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -728,17 +728,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"e2ff621e-5385-4363-a56c-a19c89d3f30b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79d92730-e4cb-40ce-a409-e3455ade499f" + "2dd268a5-f06d-4051-ba5f-91da2ad86da6" ], "Accept-Language": [ "en-US" @@ -747,7 +747,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -758,13 +758,13 @@ "no-cache" ], "x-ms-request-id": [ - "a1004644-6f81-4416-9c34-94d912f47465" + "815dfa70-162e-43e9-bce6-2c2fb3e0668b" ], "x-ms-correlation-request-id": [ - "04900c12-31d2-42ed-9c07-ba8d60b32b5a" + "6b73eef4-f213-4815-aae1-84064be0d9d8" ], "x-ms-arm-service-request-id": [ - "8ecc5a77-fb6d-4f7b-b04d-ef52a63c33df" + "0dfc02b7-4025-4ca6-9192-b046085e2462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,16 +777,16 @@ "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074024Z:04900c12-31d2-42ed-9c07-ba8d60b32b5a" + "WESTUS:20200616T192227Z:6b73eef4-f213-4815-aae1-84064be0d9d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:24 GMT" + "Tue, 16 Jun 2020 19:22:26 GMT" ], "Content-Length": [ - "758" + "756" ], "Content-Type": [ "application/json; charset=utf-8" @@ -795,17 +795,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"8002ba76-f7ef-4a13-aea8-bbb6633e8104\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"e2ff621e-5385-4363-a56c-a19c89d3f30b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11d5f681-25be-42a0-9613-95abc61a9adc" + "d6808b2b-96a1-4de0-94ca-d281d46f1446" ], "Accept-Language": [ "en-US" @@ -814,7 +814,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -825,13 +825,13 @@ "no-cache" ], "x-ms-request-id": [ - "26962dce-da48-43b8-945e-3a39a474f4b9" + "8488ea02-f0b2-48cf-b5e3-075b9f628a02" ], "x-ms-correlation-request-id": [ - "ee2de2e9-f78a-4e23-aebe-31be5fa5a956" + "0fe8c4a8-eac9-4c25-a4d1-de08637ff797" ], "x-ms-arm-service-request-id": [ - "03bb54da-22b4-4b38-a1e1-cd83b70be2c6" + "75c1c2ac-d4ef-4196-b697-298c174f1ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -841,19 +841,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075814Z:ee2de2e9-f78a-4e23-aebe-31be5fa5a956" + "WESTUS:20200616T194057Z:0fe8c4a8-eac9-4c25-a4d1-de08637ff797" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:13 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "1178" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,17 +862,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"a4cb1946-57d1-4964-afd7-c3933c69f387\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"5bec4f20-44d6-4498-9c3e-28db907d0681\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cef1d2e-bbfd-4126-841a-3959105d1bc1" + "8852f396-3358-40cb-b0d8-86fbda2319e3" ], "Accept-Language": [ "en-US" @@ -881,7 +881,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -892,13 +892,13 @@ "no-cache" ], "x-ms-request-id": [ - "9f504f36-55dd-43b9-b40a-7fe83ce2cfc1" + "4d814d38-15e9-4847-9f1e-1ef57f81447b" ], "x-ms-correlation-request-id": [ - "fb9703df-62f9-4fa2-8b52-5cd1a5ab4b3d" + "ade7ad51-59d6-470d-80aa-658acd003598" ], "x-ms-arm-service-request-id": [ - "3d0d264e-73ad-448b-8149-bf1612848d99" + "f71fc3a3-cc47-430f-9669-5649ac2a1e3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -911,16 +911,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075836Z:fb9703df-62f9-4fa2-8b52-5cd1a5ab4b3d" + "WESTUS:20200616T194119Z:ade7ad51-59d6-470d-80aa-658acd003598" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:36 GMT" + "Tue, 16 Jun 2020 19:41:18 GMT" ], "Content-Length": [ - "1178" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -929,17 +929,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"65fc0ee0-dc18-4d65-823a-04c72f98540d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55ba2000-abfb-4e47-a7c4-48b90675d78a" + "62b75b41-d58a-4898-986d-267d0e24434b" ], "Accept-Language": [ "en-US" @@ -948,7 +948,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -959,13 +959,13 @@ "no-cache" ], "x-ms-request-id": [ - "46764f8c-ad56-45ea-85df-7bc4d5bd5b4c" + "af4e07d3-d20d-4eab-8b52-3b4771e99123" ], "x-ms-correlation-request-id": [ - "8f7dd5b2-2251-41ed-8f99-5f2b11770931" + "bbf0e8f5-692e-4812-8223-b2be35832748" ], "x-ms-arm-service-request-id": [ - "8247b97c-6dc9-45a9-81fb-58f54143270a" + "9d2d930d-8f41-4752-9bb6-241c2ab94f1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -975,19 +975,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075847Z:8f7dd5b2-2251-41ed-8f99-5f2b11770931" + "WESTUS:20200616T194130Z:bbf0e8f5-692e-4812-8223-b2be35832748" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:46 GMT" + "Tue, 16 Jun 2020 19:41:30 GMT" ], "Content-Length": [ - "1178" + "1175" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,17 +996,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"efa39cec-7816-41dd-ad81-1a256b5904cd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"routeServiceAsn\": \"65515\",\r\n \"routeServicePeeringIPs\": \"[{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_0\\\",\\\"IPAddress\\\":\\\"10.0.96.4\\\"},{\\\"InstanceName\\\":\\\"RouteServiceRole_IN_1\\\",\\\"IPAddress\\\":\\\"10.0.96.5\\\"}]\",\r\n \"virtualRouterAsn\": 65515,\r\n \"virtualRouterIps\": [\r\n \"10.0.96.4\",\r\n \"10.0.96.5\"\r\n ],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"azureFirewall\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n },\r\n \"routingState\": \"Provisioned\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"sku\": \"Standard\",\r\n \"virtualRouterIps\": []\r\n },\r\n \"location\": \"West Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b67325ff-c8b0-4230-b7d1-2213e2b2dadd" + "7eb84a9f-256c-47a5-bfef-04abf5c1dc20" ], "Accept-Language": [ "en-US" @@ -1015,13 +1015,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "352" + "351" ] }, "ResponseHeaders": { @@ -1035,19 +1035,19 @@ "10" ], "x-ms-request-id": [ - "65aa0bba-70c4-4980-ad86-0f72eb94c4cf" + "99948740-cce4-402b-bc33-d5cca0db2c06" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "274cbf7c-e07e-4902-bac1-ee72ba941c5c" + "5773a947-4a37-4b15-b14d-05caafd5feb1" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cc035c84-1985-47d8-be2b-f82a868aa210" + "bce4bd23-49ac-49d3-b74d-0e5ae6d43482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,19 +1057,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073652Z:274cbf7c-e07e-4902-bac1-ee72ba941c5c" + "WESTUS:20200616T191905Z:5773a947-4a37-4b15-b14d-05caafd5feb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:36:52 GMT" + "Tue, 16 Jun 2020 19:19:04 GMT" ], "Content-Length": [ - "749" + "747" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1078,12 +1078,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"ps7830\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\",\r\n \"etag\": \"W/\\\"55ac4e6a-77f0-4499-bcdd-62a30594e5e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"ps8124\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\",\r\n \"etag\": \"W/\\\"bc4c37bf-7cd3-4f35-98f3-98409d010551\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"virtualRouterAsn\": 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524\"\r\n },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1091,7 +1091,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1105,13 +1105,13 @@ "10" ], "x-ms-request-id": [ - "0e8aec50-52c4-456a-bf29-6e7c510305d3" + "c38a27db-065b-4b11-ad76-4374fe1082f4" ], "x-ms-correlation-request-id": [ - "6a190792-0926-43e8-af92-eec7954da0d0" + "d039ff6a-57b0-4a52-a812-e85f3fc4fdf6" ], "x-ms-arm-service-request-id": [ - "95e6ee77-e43e-42e9-8646-16e5ccf11d0a" + "2a5f3f14-b541-41fe-83c9-5e78dcb24d10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1121,16 +1121,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073702Z:6a190792-0926-43e8-af92-eec7954da0d0" + "WESTUS:20200616T191915Z:d039ff6a-57b0-4a52-a812-e85f3fc4fdf6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:02 GMT" + "Tue, 16 Jun 2020 19:19:14 GMT" ], "Content-Length": [ "30" @@ -1146,8 +1146,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1155,7 +1155,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1169,13 +1169,13 @@ "10" ], "x-ms-request-id": [ - "aac1c476-4073-494f-a2e1-8a9c3b54578f" + "5ae8b888-034d-410e-b512-5890872a3450" ], "x-ms-correlation-request-id": [ - "687f6036-eb6a-4f21-8300-5268a27c5f3e" + "1358ebd3-9fd7-4195-a468-04d6a219359c" ], "x-ms-arm-service-request-id": [ - "8ca76839-f8bd-4830-9fdb-1f8f7ad34c12" + "60c69b5f-4f19-47e7-9942-3b259a9e5ba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,16 +1185,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073712Z:687f6036-eb6a-4f21-8300-5268a27c5f3e" + "WESTUS:20200616T191925Z:1358ebd3-9fd7-4195-a468-04d6a219359c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:12 GMT" + "Tue, 16 Jun 2020 19:19:24 GMT" ], "Content-Length": [ "30" @@ -1210,8 +1210,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1219,7 +1219,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1233,13 +1233,13 @@ "10" ], "x-ms-request-id": [ - "0b84019d-5534-449e-9943-25e986b6b845" + "e0c16a8e-4d66-4355-a234-7ad46d4c858a" ], "x-ms-correlation-request-id": [ - "50a15847-e13a-4e74-8d6f-600cd674a8c1" + "a70b6253-6f67-4737-b294-1d5014bab3db" ], "x-ms-arm-service-request-id": [ - "b9156163-8f01-4f08-b7a0-402b6c737aed" + "6e348d1c-5010-493b-af19-1586c2134849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1249,16 +1249,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073722Z:50a15847-e13a-4e74-8d6f-600cd674a8c1" + "WESTUS:20200616T191935Z:a70b6253-6f67-4737-b294-1d5014bab3db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:22 GMT" + "Tue, 16 Jun 2020 19:19:34 GMT" ], "Content-Length": [ "30" @@ -1274,8 +1274,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1283,7 +1283,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1297,13 +1297,13 @@ "10" ], "x-ms-request-id": [ - "0446bb2f-f441-4412-92d5-0d8008f312e7" + "818e9afd-d927-419c-a120-cc39364a7d03" ], "x-ms-correlation-request-id": [ - "ec2a3d4f-2954-4888-bb37-47bc94443d07" + "d038ae6d-2138-4a75-9526-6a7081217fb4" ], "x-ms-arm-service-request-id": [ - "2979d515-9bd3-4281-a252-16845de2c8ee" + "df2f13a0-b740-4586-8741-8cfaee656029" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1313,16 +1313,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073732Z:ec2a3d4f-2954-4888-bb37-47bc94443d07" + "WESTUS:20200616T191945Z:d038ae6d-2138-4a75-9526-6a7081217fb4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:32 GMT" + "Tue, 16 Jun 2020 19:19:44 GMT" ], "Content-Length": [ "30" @@ -1338,8 +1338,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1347,7 +1347,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1361,13 +1361,13 @@ "10" ], "x-ms-request-id": [ - "af0e0501-0f18-464b-9913-888716c73ffa" + "27e9b864-e67d-4d11-99ec-22845670807d" ], "x-ms-correlation-request-id": [ - "48edddd5-dc0a-4336-b4c1-6acb42248984" + "f5f01d1e-1294-469a-b2f1-9571af194726" ], "x-ms-arm-service-request-id": [ - "7044f874-050f-4ffa-a223-61030003ff56" + "abe73d7a-5ba8-49e3-93f1-0322c6353689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1377,16 +1377,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073742Z:48edddd5-dc0a-4336-b4c1-6acb42248984" + "WESTUS:20200616T191955Z:f5f01d1e-1294-469a-b2f1-9571af194726" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:42 GMT" + "Tue, 16 Jun 2020 19:19:55 GMT" ], "Content-Length": [ "30" @@ -1402,8 +1402,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1411,7 +1411,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1425,13 +1425,13 @@ "10" ], "x-ms-request-id": [ - "4563d330-209d-4344-8fe4-fc33be8db353" + "b8a101b3-8187-4926-86c5-433269822a37" ], "x-ms-correlation-request-id": [ - "b2a7a746-af1c-464e-b2a3-3c3a5221d9bc" + "0bf3c79d-eeb9-49de-a844-9bfb0ef1c789" ], "x-ms-arm-service-request-id": [ - "df9fb101-a890-4cad-8e2e-a35042a88467" + "03876392-3056-486d-a838-a153f6cf02dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1441,16 +1441,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073752Z:b2a7a746-af1c-464e-b2a3-3c3a5221d9bc" + "WESTUS:20200616T192005Z:0bf3c79d-eeb9-49de-a844-9bfb0ef1c789" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:37:52 GMT" + "Tue, 16 Jun 2020 19:20:05 GMT" ], "Content-Length": [ "30" @@ -1466,8 +1466,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1475,7 +1475,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1489,13 +1489,13 @@ "10" ], "x-ms-request-id": [ - "4e631688-773f-4038-a965-488508c50358" + "b0fa8a11-2b3c-4313-8282-bec989f19372" ], "x-ms-correlation-request-id": [ - "13b15557-7a66-47f2-9999-96b93ac088b6" + "f37012ff-7452-4e5c-8861-676e07dedfe6" ], "x-ms-arm-service-request-id": [ - "f6e1788a-298b-4eea-a66d-77b74f649db4" + "d0e5c0e5-43fc-4d36-81b4-c4e0fd2ed6b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1505,16 +1505,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073803Z:13b15557-7a66-47f2-9999-96b93ac088b6" + "WESTUS:20200616T192015Z:f37012ff-7452-4e5c-8861-676e07dedfe6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:02 GMT" + "Tue, 16 Jun 2020 19:20:15 GMT" ], "Content-Length": [ "30" @@ -1530,8 +1530,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1539,7 +1539,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1553,13 +1553,13 @@ "10" ], "x-ms-request-id": [ - "208b938f-d6c6-4ae8-93cb-99fa4d5160b1" + "af533e94-4359-495a-b062-a0694864fbce" ], "x-ms-correlation-request-id": [ - "ce5d4fd2-1b08-41af-9515-db1360588be8" + "7e6e60db-464f-479e-996a-91c8781279cb" ], "x-ms-arm-service-request-id": [ - "0c5e69d6-3f84-42e6-855c-c0d00a3acf38" + "bf2315d6-7bd5-4267-a473-cf8ae4a9f447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1569,16 +1569,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073813Z:ce5d4fd2-1b08-41af-9515-db1360588be8" + "WESTUS:20200616T192025Z:7e6e60db-464f-479e-996a-91c8781279cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:12 GMT" + "Tue, 16 Jun 2020 19:20:25 GMT" ], "Content-Length": [ "30" @@ -1594,8 +1594,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1603,7 +1603,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1617,13 +1617,13 @@ "10" ], "x-ms-request-id": [ - "01c6900f-21e8-4c47-9c90-091b9bf5cc26" + "adb95537-466f-4dee-93f6-3b67e4220b36" ], "x-ms-correlation-request-id": [ - "c5199761-9190-49af-a3e4-28b5b2f92138" + "4f1d6e44-9757-4c6d-bff3-648894cbe410" ], "x-ms-arm-service-request-id": [ - "ece29bc9-2484-45a2-b961-27cd40353a82" + "ba4e6dd2-768f-4f70-91a1-2b10b76ca12f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1633,16 +1633,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11990" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073823Z:c5199761-9190-49af-a3e4-28b5b2f92138" + "WESTUS:20200616T192035Z:4f1d6e44-9757-4c6d-bff3-648894cbe410" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:22 GMT" + "Tue, 16 Jun 2020 19:20:35 GMT" ], "Content-Length": [ "30" @@ -1658,8 +1658,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1667,7 +1667,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1681,13 +1681,13 @@ "10" ], "x-ms-request-id": [ - "cabf98cb-6b90-4ff7-bd7f-59414a001cbf" + "8b1f71df-812b-4d9f-a6a4-85f88578322d" ], "x-ms-correlation-request-id": [ - "f1b1d072-7029-4825-af0e-b5490fdf0e6b" + "b07eef3d-e148-4b4c-856e-1744cebdfa41" ], "x-ms-arm-service-request-id": [ - "5145ba79-431d-4df3-986c-7de059898a52" + "1293a6b5-50ee-489a-82b2-c37945c419b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1697,16 +1697,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11989" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073833Z:f1b1d072-7029-4825-af0e-b5490fdf0e6b" + "WESTUS:20200616T192045Z:b07eef3d-e148-4b4c-856e-1744cebdfa41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:32 GMT" + "Tue, 16 Jun 2020 19:20:45 GMT" ], "Content-Length": [ "30" @@ -1722,8 +1722,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1731,7 +1731,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1745,13 +1745,13 @@ "10" ], "x-ms-request-id": [ - "05103d0a-6caa-404f-98e1-0eacf3ed40d1" + "fdb77882-cfe9-4e13-9d9a-a3e2c541657c" ], "x-ms-correlation-request-id": [ - "9b92ebe1-5fbb-40b8-8c1f-6116d13f1c49" + "15f119fe-8e47-47f9-a5d9-5ab002bcf551" ], "x-ms-arm-service-request-id": [ - "cce4cbb2-5b63-4d36-a7d8-71f65827795f" + "3989a0b2-1e79-4c2c-9cfe-79fa315279fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1761,16 +1761,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11988" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073843Z:9b92ebe1-5fbb-40b8-8c1f-6116d13f1c49" + "WESTUS:20200616T192056Z:15f119fe-8e47-47f9-a5d9-5ab002bcf551" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:42 GMT" + "Tue, 16 Jun 2020 19:20:55 GMT" ], "Content-Length": [ "30" @@ -1786,8 +1786,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1795,7 +1795,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1809,13 +1809,13 @@ "10" ], "x-ms-request-id": [ - "0d95b345-b12a-4a65-8560-592fd9ef7d38" + "a6d7f258-8975-41a6-a135-bee249d4e47d" ], "x-ms-correlation-request-id": [ - "8a0b05b9-9696-44fd-886c-4f126820e92f" + "6ac0f4c2-eacf-4fa3-8967-07ccb9aa4032" ], "x-ms-arm-service-request-id": [ - "61227687-077a-4387-9c54-289f153ed6b0" + "81e7f558-3b94-4ce2-9302-908a5bbb0cfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1825,16 +1825,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11987" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073853Z:8a0b05b9-9696-44fd-886c-4f126820e92f" + "WESTUS:20200616T192106Z:6ac0f4c2-eacf-4fa3-8967-07ccb9aa4032" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:38:52 GMT" + "Tue, 16 Jun 2020 19:21:05 GMT" ], "Content-Length": [ "30" @@ -1850,8 +1850,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1859,7 +1859,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1873,13 +1873,13 @@ "10" ], "x-ms-request-id": [ - "7559f0dc-e83f-4b68-bb2f-52fd9472ee85" + "1a8184f0-f81d-4509-80e5-771e8f377a4d" ], "x-ms-correlation-request-id": [ - "7fc28538-c0c9-4f62-863e-8ad1b530e06b" + "c63079e5-a4d1-4b65-a25f-fcaac4471ad1" ], "x-ms-arm-service-request-id": [ - "a2a5b55f-45fc-4916-b69a-070ea0600bc0" + "6448401a-7b75-43cf-9c55-e61b4772c51c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1889,16 +1889,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11986" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073903Z:7fc28538-c0c9-4f62-863e-8ad1b530e06b" + "WESTUS:20200616T192116Z:c63079e5-a4d1-4b65-a25f-fcaac4471ad1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:03 GMT" + "Tue, 16 Jun 2020 19:21:15 GMT" ], "Content-Length": [ "30" @@ -1914,8 +1914,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1923,7 +1923,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -1937,13 +1937,13 @@ "10" ], "x-ms-request-id": [ - "09a11412-42ec-425d-8cf0-e4285213d82c" + "34a8e56f-b110-4475-8355-b1ec191b1ea1" ], "x-ms-correlation-request-id": [ - "ce99c324-850f-4e12-b7df-dc9c5c0fa277" + "cd015c0a-af7d-4ff3-92e7-78b759ab6813" ], "x-ms-arm-service-request-id": [ - "0a2adb89-17fa-4e18-8cb7-90e407d0365e" + "556579e6-e750-49c1-8343-6f88b685f27f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1953,16 +1953,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11985" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073913Z:ce99c324-850f-4e12-b7df-dc9c5c0fa277" + "WESTUS:20200616T192126Z:cd015c0a-af7d-4ff3-92e7-78b759ab6813" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:13 GMT" + "Tue, 16 Jun 2020 19:21:25 GMT" ], "Content-Length": [ "30" @@ -1978,8 +1978,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -1987,7 +1987,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2001,13 +2001,13 @@ "10" ], "x-ms-request-id": [ - "cbeec118-4066-47a7-adf0-746d722786d7" + "7161bff3-be86-40bf-8d17-7fa504a80fe7" ], "x-ms-correlation-request-id": [ - "bffad8c4-1bb8-47c5-9e2b-326c44b28f62" + "206f1118-f6ec-4fd3-9eae-9a36f09705b6" ], "x-ms-arm-service-request-id": [ - "60e847f6-677e-482b-a067-2b9a96504674" + "38e51398-1d84-4773-a1b7-04211d4ada2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2017,16 +2017,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11984" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073923Z:bffad8c4-1bb8-47c5-9e2b-326c44b28f62" + "WESTUS:20200616T192136Z:206f1118-f6ec-4fd3-9eae-9a36f09705b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:23 GMT" + "Tue, 16 Jun 2020 19:21:35 GMT" ], "Content-Length": [ "30" @@ -2042,8 +2042,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2051,7 +2051,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2065,13 +2065,13 @@ "10" ], "x-ms-request-id": [ - "3f60a687-61bb-4b9a-bc75-e8ec6ebae2f7" + "e7262ae8-3c95-4843-8542-ff6de0128dd3" ], "x-ms-correlation-request-id": [ - "367d32fb-ef03-4183-94bd-a14b9a1aa857" + "2cd3d4a4-f810-4011-868f-901e6600ab8b" ], "x-ms-arm-service-request-id": [ - "0e3b35ac-a085-4c8b-a1ba-72c0f63c4754" + "0956bdd3-9581-4652-b20b-851181c7ff04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2081,16 +2081,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11983" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073933Z:367d32fb-ef03-4183-94bd-a14b9a1aa857" + "WESTUS:20200616T192146Z:2cd3d4a4-f810-4011-868f-901e6600ab8b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:33 GMT" + "Tue, 16 Jun 2020 19:21:45 GMT" ], "Content-Length": [ "30" @@ -2106,8 +2106,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2115,7 +2115,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2129,13 +2129,13 @@ "10" ], "x-ms-request-id": [ - "40199710-ab8c-48d2-a112-9e7991885416" + "f8008ddf-5236-4ca8-9a8a-f79196cf8bfd" ], "x-ms-correlation-request-id": [ - "fcaa33d2-35c2-4d7f-a19d-50b4aaa19872" + "7df9745c-3fdb-4b5e-9f04-7eafa255f0c2" ], "x-ms-arm-service-request-id": [ - "4365ce38-d24e-4cf6-9a10-d171ea529c0d" + "4f0c4f4a-5b0f-40f2-9954-f6e4dc282fdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2145,16 +2145,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11982" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073943Z:fcaa33d2-35c2-4d7f-a19d-50b4aaa19872" + "WESTUS:20200616T192156Z:7df9745c-3fdb-4b5e-9f04-7eafa255f0c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:43 GMT" + "Tue, 16 Jun 2020 19:21:56 GMT" ], "Content-Length": [ "30" @@ -2170,8 +2170,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2179,7 +2179,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2193,13 +2193,13 @@ "10" ], "x-ms-request-id": [ - "c592f1c0-6a25-4c3c-a8cd-2de2a71b9ce3" + "73ee28b1-fab0-4bfe-9d56-27aadf494976" ], "x-ms-correlation-request-id": [ - "5742185d-9861-48cc-8b16-b9131e47ecdb" + "de254470-b7b7-4006-a63a-6869add7381d" ], "x-ms-arm-service-request-id": [ - "807c9c01-bf02-4614-a05f-3aec9c7ca7d0" + "0f997696-f121-46ed-86f7-71fb4a3414e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2209,16 +2209,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11981" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T073953Z:5742185d-9861-48cc-8b16-b9131e47ecdb" + "WESTUS:20200616T192206Z:de254470-b7b7-4006-a63a-6869add7381d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:39:53 GMT" + "Tue, 16 Jun 2020 19:22:06 GMT" ], "Content-Length": [ "30" @@ -2234,8 +2234,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2243,7 +2243,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2257,13 +2257,13 @@ "10" ], "x-ms-request-id": [ - "4be9fd07-ab12-4418-a5d6-a2de33575d70" + "eb6e76a6-c5de-4966-b87f-2eb2fa724c74" ], "x-ms-correlation-request-id": [ - "078ac954-a1b3-4fb1-a1e4-d63fdb689bc6" + "ac701aa3-a6e2-4ae4-8849-9c2bc6e69414" ], "x-ms-arm-service-request-id": [ - "10807c40-99ac-46ca-896b-9b6fa764d571" + "7d993b7f-8757-4ed1-b1dd-c375f4091f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2273,16 +2273,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11980" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074003Z:078ac954-a1b3-4fb1-a1e4-d63fdb689bc6" + "WESTUS:20200616T192216Z:ac701aa3-a6e2-4ae4-8849-9c2bc6e69414" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:03 GMT" + "Tue, 16 Jun 2020 19:22:16 GMT" ], "Content-Length": [ "30" @@ -2298,8 +2298,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/99948740-cce4-402b-bc33-d5cca0db2c06?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzk5OTQ4NzQwLWNjZTQtNDAyYi1iYzMzLWQ1Y2NhMGRiMmMwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2307,7 +2307,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2317,17 +2317,81 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "x-ms-request-id": [ + "25db383a-3b69-4b86-b253-efdf59aca18d" + ], + "x-ms-correlation-request-id": [ + "b2c0390b-0951-4040-a1d9-1dc2ea78aad5" + ], + "x-ms-arm-service-request-id": [ + "2dc5b031-b1d0-4fe2-96db-4d49f16cca83" + ], + "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:20200616T192226Z:b2c0390b-0951-4040-a1d9-1dc2ea78aad5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jun 2020 19:22:26 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubVirtualNetworkConnections?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09b06081-27e2-44cc-b93c-98b0958d5b67" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "836a2796-d02f-4b50-ae3b-2a8162a5c230" + "a3ff081c-50cd-47b8-b1e2-f1e9a9302e81" ], "x-ms-correlation-request-id": [ - "acb0c78f-04e5-43fb-af16-d4a43d2a4f8c" + "82b542bd-3073-414b-8e86-562f560488df" ], "x-ms-arm-service-request-id": [ - "b4e59a6e-a1d8-46ba-80e9-dbd250afc0eb" + "66d0ebfa-f451-4807-b251-3512942732b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,19 +2401,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074013Z:acb0c78f-04e5-43fb-af16-d4a43d2a4f8c" + "WESTUS:20200616T192227Z:82b542bd-3073-414b-8e86-562f560488df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:13 GMT" + "Tue, 16 Jun 2020 19:22:27 GMT" ], "Content-Length": [ - "30" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2358,20 +2422,93 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubVirtualNetworkConnections?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59e9f92d-2ef3-4262-b4c4-bcadc8addaed" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bfc3b54e-0a08-4088-b661-866d677cc816" + ], + "x-ms-correlation-request-id": [ + "457707aa-66a8-4d00-acf3-13dddf276038" + ], + "x-ms-arm-service-request-id": [ + "31e266cb-d507-43d6-9ed7-231743c7f4a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200616T194057Z:457707aa-66a8-4d00-acf3-13dddf276038" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jun 2020 19:40:57 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/65aa0bba-70c4-4980-ad86-0f72eb94c4cf?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY1YWEwYmJhLTcwYzQtNDk4MC1hZDg2LTBmNzJlYjk0YzRjZj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubVirtualNetworkConnections?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e09ae764-6510-47f3-ac39-0b7a1868651d" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2382,13 +2519,13 @@ "no-cache" ], "x-ms-request-id": [ - "927d70c2-4a1c-4ebc-8e2f-521b49e0e31e" + "d9a8bc83-73cb-4f4c-bd28-f4723a644a1c" ], "x-ms-correlation-request-id": [ - "e79db794-7bfc-4482-a3d0-dc0a15862994" + "fc83f1ff-f256-447a-bebd-569894ded9ac" ], "x-ms-arm-service-request-id": [ - "4b4e4f0a-5523-4664-b4b4-8edf774ab291" + "93247ada-d699-479d-ad94-2f9b16957eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2398,19 +2535,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074023Z:e79db794-7bfc-4482-a3d0-dc0a15862994" + "WESTUS:20200616T194119Z:fc83f1ff-f256-447a-bebd-569894ded9ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:23 GMT" + "Tue, 16 Jun 2020 19:41:19 GMT" ], "Content-Length": [ - "29" + "19" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2419,17 +2556,84 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubVirtualNetworkConnections?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViVmlydHVhbE5ldHdvcmtDb25uZWN0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cad5707a-83fb-4a37-a229-c31588403f60" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f9899937-0317-4b64-87e8-3a7ff6d4e823" + ], + "x-ms-correlation-request-id": [ + "72697219-f3b9-4f32-8121-439b822e526b" + ], + "x-ms-arm-service-request-id": [ + "f26e3066-3ae6-438d-b4ce-be61bad03b9a" + ], + "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:20200616T194131Z:72697219-f3b9-4f32-8121-439b822e526b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 16 Jun 2020 19:41:30 GMT" + ], + "Content-Length": [ + "19" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8766509-b86c-4588-8698-6db1e518be35" + "c845b985-6da0-4190-8ed6-cd2f874f8faa" ], "Accept-Language": [ "en-US" @@ -2438,7 +2642,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2452,13 +2656,13 @@ "gateway" ], "x-ms-request-id": [ - "3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + "424a61e5-e1ef-44f7-88c2-441bc5880dd8" ], "x-ms-correlation-request-id": [ - "3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + "424a61e5-e1ef-44f7-88c2-441bc5880dd8" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074024Z:3eb8d1a6-4a2a-4010-8d4f-279a528ec2b7" + "WESTUS:20200616T192227Z:424a61e5-e1ef-44f7-88c2-441bc5880dd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2467,7 +2671,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:24 GMT" + "Tue, 16 Jun 2020 19:22:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2476,15 +2680,15 @@ "-1" ], "Content-Length": [ - "227" + "226" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/azFwInVirtualHub' under resource group 'ps5557' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/azureFirewalls/azFwInVirtualHub' under resource group 'ps303' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2492,7 +2696,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2503,16 +2707,16 @@ "no-cache" ], "ETag": [ - "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + "W/\"e920c838-ce8e-403a-897a-9a09db91c971\"" ], "x-ms-request-id": [ - "98b238fc-e8a3-41de-8888-f5d30c2671df" + "a07d403d-8562-4178-978f-6e1e7756dac3" ], "x-ms-correlation-request-id": [ - "2c8202d7-d293-4180-80a7-19ac49c196d3" + "8016d557-0a1a-41fb-a40e-f2ee067de9dd" ], "x-ms-arm-service-request-id": [ - "83b82f5f-ec7d-403d-ac7f-8bd6fa769016" + "c59407de-9a56-429a-bbe5-6eff7e582649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2522,19 +2726,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11887" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075813Z:2c8202d7-d293-4180-80a7-19ac49c196d3" + "WESTUS:20200616T194056Z:8016d557-0a1a-41fb-a40e-f2ee067de9dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:13 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "979" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2543,17 +2747,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"e920c838-ce8e-403a-897a-9a09db91c971\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "516a49ab-0756-40bb-b352-387b2edc066b" + "7e2bfdfa-3976-4ae2-8222-3c311b89524c" ], "Accept-Language": [ "en-US" @@ -2562,7 +2766,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2573,16 +2777,16 @@ "no-cache" ], "ETag": [ - "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + "W/\"e920c838-ce8e-403a-897a-9a09db91c971\"" ], "x-ms-request-id": [ - "c0b1c176-9d83-47ab-9c4e-86918326d3b7" + "82887505-06c6-4dab-ac08-c353534ebb13" ], "x-ms-correlation-request-id": [ - "93c6aa82-3ab4-4e13-b3ed-6b04fef848af" + "ad8737a5-9761-401d-98b2-5f18430ad6ba" ], "x-ms-arm-service-request-id": [ - "a0406f04-c701-4622-8c79-3ad73a512cac" + "ef9a96be-dd50-4a15-9350-2bc7cc75db29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2592,19 +2796,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11886" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075813Z:93c6aa82-3ab4-4e13-b3ed-6b04fef848af" + "WESTUS:20200616T194057Z:ad8737a5-9761-401d-98b2-5f18430ad6ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:13 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "979" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2613,17 +2817,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"e920c838-ce8e-403a-897a-9a09db91c971\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4e3a85a-b8fd-4c63-876d-6a564ee4276a" + "37ea1651-e1ae-41e9-9d4d-d4fc931971db" ], "Accept-Language": [ "en-US" @@ -2632,7 +2836,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2643,16 +2847,16 @@ "no-cache" ], "ETag": [ - "W/\"c400e07c-8072-461e-b62a-d4a1c4846aea\"" + "W/\"e920c838-ce8e-403a-897a-9a09db91c971\"" ], "x-ms-request-id": [ - "a85d9ba0-9749-44c5-a144-f667e551d089" + "665d1a76-6dd2-4ce1-acba-902f4775d417" ], "x-ms-correlation-request-id": [ - "7b9089ce-3874-4ec0-91b8-09fee6b92c0f" + "442d0245-a0af-4384-b6a2-c0c13eb42e35" ], "x-ms-arm-service-request-id": [ - "2b865816-0f59-492b-84b2-019c7718a285" + "3894c132-dd9c-4643-8065-52bc7dbf7ba6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2665,16 +2869,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075813Z:7b9089ce-3874-4ec0-91b8-09fee6b92c0f" + "WESTUS:20200616T194057Z:442d0245-a0af-4384-b6a2-c0c13eb42e35" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:12 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "979" + "975" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2683,17 +2887,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"c400e07c-8072-461e-b62a-d4a1c4846aea\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.148.31.215\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"e920c838-ce8e-403a-897a-9a09db91c971\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.128.4\",\r\n \"publicIPAddresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": \"52.159.17.19\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"location\": \"westcentralus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": [],\r\n \"networkRuleCollections\": [],\r\n \"ipConfigurations\": [],\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {}\r\n },\r\n \"zones\": [],\r\n \"location\": \"westcentralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07f7d5fb-ddd7-41e7-b67c-eeab3932a754" + "de8716f8-2a97-4f19-9320-87423a9078f7" ], "Accept-Language": [ "en-US" @@ -2702,13 +2906,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "592" + "591" ] }, "ResponseHeaders": { @@ -2722,19 +2926,19 @@ "10" ], "x-ms-request-id": [ - "e47ac9b4-487c-4d88-87d2-069989a4e309" + "a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "95dcf97f-2245-4e44-a2b1-572439d5974f" + "d8087e6b-7105-4c19-8a60-8fafd6e8c20f" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "3cbaef6c-026b-46b9-bc31-58b86120849a" + "d7a21325-fc84-4d97-bd9e-c656bde87a5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2747,16 +2951,16 @@ "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074026Z:95dcf97f-2245-4e44-a2b1-572439d5974f" + "WESTUS:20200616T192229Z:d8087e6b-7105-4c19-8a60-8fafd6e8c20f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:26 GMT" + "Tue, 16 Jun 2020 19:22:29 GMT" ], "Content-Length": [ - "793" + "791" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2765,12 +2969,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"90741178-4a67-4029-a42e-99db4e67c794\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPAddresses\": [],\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"azFwInVirtualHub\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\",\r\n \"etag\": \"W/\\\"23efd173-463e-423b-b91c-f9ddf5c0ac04\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124\"\r\n },\r\n \"hubIPAddresses\": {\r\n \"publicIPAddresses\": [],\r\n \"publicIPs\": {\r\n \"addresses\": [],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2778,7 +2982,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2792,13 +2996,13 @@ "10" ], "x-ms-request-id": [ - "ad1ea0db-0df1-4068-b17f-27bbcf542754" + "fa7a3b6d-9ccc-4693-832f-93b8f855d4dd" ], "x-ms-correlation-request-id": [ - "813d43c7-859e-4e54-bde1-9bb8a1a6ccd9" + "dd8caffc-87a5-4821-933e-b7e35ebb298a" ], "x-ms-arm-service-request-id": [ - "46abdca4-8618-4e9d-88f6-258beb3582b7" + "2b0897ff-c444-43eb-8684-e4ff6fdbc01a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2811,13 +3015,13 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074036Z:813d43c7-859e-4e54-bde1-9bb8a1a6ccd9" + "WESTUS:20200616T192239Z:dd8caffc-87a5-4821-933e-b7e35ebb298a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:36 GMT" + "Tue, 16 Jun 2020 19:22:39 GMT" ], "Content-Length": [ "30" @@ -2833,8 +3037,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2842,7 +3046,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2856,13 +3060,13 @@ "10" ], "x-ms-request-id": [ - "3494f2ac-4cd9-489f-85f8-2d61d0d0e460" + "fc23c0b0-0722-444e-a04d-bda29007826c" ], "x-ms-correlation-request-id": [ - "c6d95243-b404-4a5f-b6b3-61c2011fa5ec" + "4698282c-caf1-4347-911c-e30f210b4721" ], "x-ms-arm-service-request-id": [ - "2c2a3d36-1c16-4291-9e19-7c796230496a" + "d4ad7d01-0e4b-4a44-b04f-1dddea2426c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2875,13 +3079,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074046Z:c6d95243-b404-4a5f-b6b3-61c2011fa5ec" + "WESTUS:20200616T192249Z:4698282c-caf1-4347-911c-e30f210b4721" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:46 GMT" + "Tue, 16 Jun 2020 19:22:49 GMT" ], "Content-Length": [ "30" @@ -2897,8 +3101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2906,7 +3110,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2920,13 +3124,13 @@ "10" ], "x-ms-request-id": [ - "4bf82cfc-458c-48f1-b56b-c4888b5df721" + "abf07529-19df-4c1f-977c-cb35740e3900" ], "x-ms-correlation-request-id": [ - "543af16a-2020-46c0-a17c-c0704dcabff4" + "f20fa2d3-fb5a-4bc2-9f37-7758d321d26b" ], "x-ms-arm-service-request-id": [ - "b8c3c0df-b768-460d-bb14-12e70c1d93af" + "34f30b1a-6ef0-40b9-8b6f-cac16f04755a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2939,13 +3143,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074056Z:543af16a-2020-46c0-a17c-c0704dcabff4" + "WESTUS:20200616T192259Z:f20fa2d3-fb5a-4bc2-9f37-7758d321d26b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:40:56 GMT" + "Tue, 16 Jun 2020 19:22:59 GMT" ], "Content-Length": [ "30" @@ -2961,8 +3165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -2970,7 +3174,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -2984,13 +3188,13 @@ "10" ], "x-ms-request-id": [ - "2ad36ae8-fcd5-4a25-8117-b5a0f3bb852c" + "fc036896-2cf2-48e4-bd42-eed94672a8d7" ], "x-ms-correlation-request-id": [ - "55ef50de-4ff9-4850-8f42-4df0fb0ad32a" + "f04e30c2-1103-4d35-81db-3ab6f1b5427a" ], "x-ms-arm-service-request-id": [ - "e4203da3-33ba-4aec-a464-5bf25c3bc156" + "ef945d24-3deb-4697-81ec-4e0313df1295" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3003,13 +3207,13 @@ "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074106Z:55ef50de-4ff9-4850-8f42-4df0fb0ad32a" + "WESTUS:20200616T192309Z:f04e30c2-1103-4d35-81db-3ab6f1b5427a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:06 GMT" + "Tue, 16 Jun 2020 19:23:09 GMT" ], "Content-Length": [ "30" @@ -3025,8 +3229,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3034,7 +3238,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3048,13 +3252,13 @@ "10" ], "x-ms-request-id": [ - "ace13c83-5ad5-4294-84c0-234f23f98df7" + "c9631bb1-732c-47e7-96ad-d22a4819d660" ], "x-ms-correlation-request-id": [ - "e7d09e50-703b-48c5-b761-562f59928878" + "2479afaa-b07b-466b-b1b3-aa5420669122" ], "x-ms-arm-service-request-id": [ - "bec99305-84df-4855-87ed-f435a2e1ccbd" + "6dcd989b-c6b3-4d3d-9ac5-57ecd044fe15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3067,13 +3271,13 @@ "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074116Z:e7d09e50-703b-48c5-b761-562f59928878" + "WESTUS:20200616T192320Z:2479afaa-b07b-466b-b1b3-aa5420669122" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:16 GMT" + "Tue, 16 Jun 2020 19:23:19 GMT" ], "Content-Length": [ "30" @@ -3089,8 +3293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3098,7 +3302,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3112,13 +3316,13 @@ "10" ], "x-ms-request-id": [ - "3e7454f8-6d3a-4c48-a585-8e9ed38b2912" + "017bd16e-3684-404b-bdfe-7b1e2a6d372e" ], "x-ms-correlation-request-id": [ - "73ac6adb-1a23-458c-a5a6-a3f1fdf45505" + "27b7d444-d994-49a6-b638-0dc38f07ddbe" ], "x-ms-arm-service-request-id": [ - "064a3630-c248-4e17-ab80-5c8de0635237" + "6f154832-572f-47d1-a9b7-8618561b0c37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3131,13 +3335,13 @@ "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074126Z:73ac6adb-1a23-458c-a5a6-a3f1fdf45505" + "WESTUS:20200616T192330Z:27b7d444-d994-49a6-b638-0dc38f07ddbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:26 GMT" + "Tue, 16 Jun 2020 19:23:29 GMT" ], "Content-Length": [ "30" @@ -3153,8 +3357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3162,7 +3366,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3176,13 +3380,13 @@ "10" ], "x-ms-request-id": [ - "036dacd0-9495-4991-ab12-ebeb85d77673" + "95d9b609-3086-4cf5-bebb-8aeafe5a0aef" ], "x-ms-correlation-request-id": [ - "11f008b4-a754-4237-8441-ed194f4f75c1" + "ff66206c-e20b-4ae9-b986-6d5ef2a03adf" ], "x-ms-arm-service-request-id": [ - "ce600dc1-e19a-4283-a7bc-c522dd51c2a6" + "d0ffd36d-649e-4668-a27f-1cecdeaf18c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3195,13 +3399,13 @@ "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074136Z:11f008b4-a754-4237-8441-ed194f4f75c1" + "WESTUS:20200616T192340Z:ff66206c-e20b-4ae9-b986-6d5ef2a03adf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:36 GMT" + "Tue, 16 Jun 2020 19:23:39 GMT" ], "Content-Length": [ "30" @@ -3217,8 +3421,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3226,7 +3430,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3240,13 +3444,13 @@ "10" ], "x-ms-request-id": [ - "816c3e23-dcc6-4ee2-8031-d786fee8060e" + "154205bd-2bde-4562-86bb-7a30529a2f56" ], "x-ms-correlation-request-id": [ - "d366c096-0e93-41f9-a8c6-396fb5c76419" + "3a03c7b1-097e-48ee-b5e3-f215f9a3b8fc" ], "x-ms-arm-service-request-id": [ - "cc2e4064-d4a0-4b1f-a9b8-f353d81e3c77" + "99fdde3b-9772-4ff8-b56b-a11856cfecd6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3259,13 +3463,13 @@ "11990" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074147Z:d366c096-0e93-41f9-a8c6-396fb5c76419" + "WESTUS:20200616T192350Z:3a03c7b1-097e-48ee-b5e3-f215f9a3b8fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:46 GMT" + "Tue, 16 Jun 2020 19:23:49 GMT" ], "Content-Length": [ "30" @@ -3281,8 +3485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3290,7 +3494,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3304,13 +3508,13 @@ "10" ], "x-ms-request-id": [ - "8a52b35f-c000-46b0-a8d3-6f5cfd2a8c54" + "81ca96f2-9103-4a4a-93dc-50e767340422" ], "x-ms-correlation-request-id": [ - "8a4e280e-72f2-48e2-a0e1-6698c320d812" + "d964a115-555a-4b9a-956a-464eba6c12aa" ], "x-ms-arm-service-request-id": [ - "f0a38e8c-d914-44d1-94d1-003fda2c5b0c" + "a38c1434-bf51-45ea-947e-e2c0adfd3449" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3323,13 +3527,13 @@ "11989" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074157Z:8a4e280e-72f2-48e2-a0e1-6698c320d812" + "WESTUS:20200616T192400Z:d964a115-555a-4b9a-956a-464eba6c12aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:41:56 GMT" + "Tue, 16 Jun 2020 19:23:59 GMT" ], "Content-Length": [ "30" @@ -3345,8 +3549,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3354,7 +3558,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3368,13 +3572,13 @@ "10" ], "x-ms-request-id": [ - "02672486-5435-4f6b-bd9a-a2580bd78cf2" + "54dfaa7f-44d6-464b-815a-a862201e075f" ], "x-ms-correlation-request-id": [ - "fd6a9185-205c-421e-af42-dead60aa90de" + "50f2a6ac-1a71-4a56-89b2-346a5b55fae7" ], "x-ms-arm-service-request-id": [ - "e5cd76ae-b4ec-4b58-967e-15ce420108ec" + "0c7b61a3-cd61-4ac3-9459-9c28e1e9bcef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3387,13 +3591,13 @@ "11988" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074207Z:fd6a9185-205c-421e-af42-dead60aa90de" + "WESTUS:20200616T192410Z:50f2a6ac-1a71-4a56-89b2-346a5b55fae7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:06 GMT" + "Tue, 16 Jun 2020 19:24:09 GMT" ], "Content-Length": [ "30" @@ -3409,8 +3613,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3418,7 +3622,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3432,13 +3636,13 @@ "10" ], "x-ms-request-id": [ - "c175c37a-803c-45fc-999b-bac05557c6bf" + "a2c3f752-904a-4b35-be17-4dc4a52a2d91" ], "x-ms-correlation-request-id": [ - "2bd7f37c-b28d-47cf-8f06-b3be3fd2fde0" + "1c308349-9f9e-4e11-b5c5-279f035999d3" ], "x-ms-arm-service-request-id": [ - "13588e20-8760-45d2-a2a7-2286ea3ed8b7" + "e50ac105-2ea2-4ebb-afe5-236e46e9dff6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3451,13 +3655,13 @@ "11987" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074217Z:2bd7f37c-b28d-47cf-8f06-b3be3fd2fde0" + "WESTUS:20200616T192420Z:1c308349-9f9e-4e11-b5c5-279f035999d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:16 GMT" + "Tue, 16 Jun 2020 19:24:19 GMT" ], "Content-Length": [ "30" @@ -3473,8 +3677,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3482,7 +3686,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3496,13 +3700,13 @@ "10" ], "x-ms-request-id": [ - "270722e7-ba78-45e9-82b5-390c97bf561b" + "770d38f3-4d9d-485d-a683-f109ca5855f8" ], "x-ms-correlation-request-id": [ - "01ac9010-be6e-4c14-b737-34bad23c0c8d" + "b1e48a5b-93b8-473b-abac-d882664d3484" ], "x-ms-arm-service-request-id": [ - "321cb6ca-25a4-4056-b0ea-ac5e14351ab5" + "04681f36-d3ab-4b3f-9955-4ccb6ff63a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3515,13 +3719,13 @@ "11986" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074227Z:01ac9010-be6e-4c14-b737-34bad23c0c8d" + "WESTUS:20200616T192430Z:b1e48a5b-93b8-473b-abac-d882664d3484" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:26 GMT" + "Tue, 16 Jun 2020 19:24:29 GMT" ], "Content-Length": [ "30" @@ -3537,8 +3741,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3546,7 +3750,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3560,13 +3764,13 @@ "10" ], "x-ms-request-id": [ - "0c3cf60d-4445-462f-b3b4-026d95d718f2" + "560ed7c9-41ff-4502-b6c7-7153981d80f7" ], "x-ms-correlation-request-id": [ - "d5f75119-529f-4019-be2c-7c48bf4a9a41" + "9112c1b9-9b3b-4954-90b7-e3b3c67ded51" ], "x-ms-arm-service-request-id": [ - "94acec61-4046-45ea-8572-7b2da5939830" + "461728c1-c61f-4c75-91ec-1a2dbc44017b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3579,13 +3783,13 @@ "11985" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074237Z:d5f75119-529f-4019-be2c-7c48bf4a9a41" + "WESTUS:20200616T192440Z:9112c1b9-9b3b-4954-90b7-e3b3c67ded51" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:36 GMT" + "Tue, 16 Jun 2020 19:24:39 GMT" ], "Content-Length": [ "30" @@ -3601,8 +3805,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3610,7 +3814,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3624,13 +3828,13 @@ "10" ], "x-ms-request-id": [ - "d296ea80-38de-4ac4-96b5-c2134c56122c" + "91b58a5f-9400-42d7-8549-642d3a436b96" ], "x-ms-correlation-request-id": [ - "bec140cd-ca06-46e2-8ff0-71cd847d467c" + "f1fcb7cf-003b-4f93-bd61-76ec460252a0" ], "x-ms-arm-service-request-id": [ - "0f2cf981-d745-42ef-a4f9-f5d8dbc8c962" + "a3160f71-7725-498f-ba41-471cf00b1385" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3643,13 +3847,13 @@ "11984" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074247Z:bec140cd-ca06-46e2-8ff0-71cd847d467c" + "WESTUS:20200616T192450Z:f1fcb7cf-003b-4f93-bd61-76ec460252a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:46 GMT" + "Tue, 16 Jun 2020 19:24:50 GMT" ], "Content-Length": [ "30" @@ -3665,8 +3869,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3674,7 +3878,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3688,13 +3892,13 @@ "10" ], "x-ms-request-id": [ - "6b7d8d95-9c9d-4a8a-b68d-ea6c9a2abf1a" + "850bf8cf-b6d0-4479-b99d-1a2ae983a2ee" ], "x-ms-correlation-request-id": [ - "25879c7e-a91d-43d1-9148-f05205c6cae1" + "a9219b09-809b-420d-8fe2-e15a475349d7" ], "x-ms-arm-service-request-id": [ - "d5892e81-d6ac-48fa-86c0-0ae89bf9d6e2" + "5915af2b-0ca9-4c62-b789-4464e8c26e39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3707,13 +3911,13 @@ "11983" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074257Z:25879c7e-a91d-43d1-9148-f05205c6cae1" + "WESTUS:20200616T192500Z:a9219b09-809b-420d-8fe2-e15a475349d7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:42:56 GMT" + "Tue, 16 Jun 2020 19:25:00 GMT" ], "Content-Length": [ "30" @@ -3729,8 +3933,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3738,7 +3942,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3752,13 +3956,13 @@ "10" ], "x-ms-request-id": [ - "ea2df2b9-9b78-4bac-92a0-ecf2340f55f7" + "5ad5b3fd-1c07-4174-a385-6d9c5bad0ac1" ], "x-ms-correlation-request-id": [ - "9578e752-42c9-4835-b827-d8153a23e0c3" + "d96e18b2-3e4a-4ec1-8c4c-de4f9e143de7" ], "x-ms-arm-service-request-id": [ - "f5da77d8-4736-448d-8d63-b98b56359e12" + "bce7b734-449f-4c07-a63b-e04f00df0771" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3771,13 +3975,13 @@ "11982" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074307Z:9578e752-42c9-4835-b827-d8153a23e0c3" + "WESTUS:20200616T192510Z:d96e18b2-3e4a-4ec1-8c4c-de4f9e143de7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:06 GMT" + "Tue, 16 Jun 2020 19:25:10 GMT" ], "Content-Length": [ "30" @@ -3793,8 +3997,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3802,7 +4006,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3816,13 +4020,13 @@ "10" ], "x-ms-request-id": [ - "b6ba3d9e-d055-49bc-9382-32a08cdff1a2" + "36939411-2e0b-40b0-969a-8c3ae1b60e83" ], "x-ms-correlation-request-id": [ - "cedb5e06-7103-44c1-83c8-6a13b08ee4d7" + "123955ae-c4b8-4f43-a6dc-01db0487d3e6" ], "x-ms-arm-service-request-id": [ - "94721e55-3822-44d5-b759-63340150e912" + "231e3264-1466-44f4-a1f4-a04858032d25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3835,13 +4039,13 @@ "11981" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074317Z:cedb5e06-7103-44c1-83c8-6a13b08ee4d7" + "WESTUS:20200616T192520Z:123955ae-c4b8-4f43-a6dc-01db0487d3e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:17 GMT" + "Tue, 16 Jun 2020 19:25:20 GMT" ], "Content-Length": [ "30" @@ -3857,8 +4061,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3866,7 +4070,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3880,13 +4084,13 @@ "10" ], "x-ms-request-id": [ - "07ea39c8-0bb5-4e60-b842-1c1ec2b08d43" + "24156e86-a4a4-4a1c-86c1-0a78de11eedc" ], "x-ms-correlation-request-id": [ - "8863098e-52d5-4938-ab12-72d16e411e48" + "1e5dcbe3-110f-4ae4-b204-5820521176a3" ], "x-ms-arm-service-request-id": [ - "9bb8bd73-b3ce-42f1-9ef0-7009c6e85d3b" + "3fd6a0fd-d7e0-4e1e-8552-e297a5cf903e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3899,13 +4103,13 @@ "11980" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074327Z:8863098e-52d5-4938-ab12-72d16e411e48" + "WESTUS:20200616T192530Z:1e5dcbe3-110f-4ae4-b204-5820521176a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:27 GMT" + "Tue, 16 Jun 2020 19:25:30 GMT" ], "Content-Length": [ "30" @@ -3921,8 +4125,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3930,7 +4134,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -3944,13 +4148,13 @@ "10" ], "x-ms-request-id": [ - "9c624662-647c-4dad-8a56-200fc94d5fcb" + "4c1b09e0-4a5c-48fd-b0c0-7757bf161da8" ], "x-ms-correlation-request-id": [ - "b38e4051-0785-4472-98bd-dc77b1792c12" + "209698f2-b6ae-4f55-ad6b-ebd6285ab022" ], "x-ms-arm-service-request-id": [ - "5356d8f2-ddae-436e-94dd-9a76d6282ce9" + "90be002e-65ad-4fd8-99b1-8b5fa2bf5cec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3963,13 +4167,13 @@ "11979" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074337Z:b38e4051-0785-4472-98bd-dc77b1792c12" + "WESTUS:20200616T192540Z:209698f2-b6ae-4f55-ad6b-ebd6285ab022" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:37 GMT" + "Tue, 16 Jun 2020 19:25:40 GMT" ], "Content-Length": [ "30" @@ -3985,8 +4189,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -3994,7 +4198,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4008,13 +4212,13 @@ "10" ], "x-ms-request-id": [ - "7eac2035-aa5c-4404-81b4-016562438424" + "3a05b7da-65a6-4cd4-9e09-e0916feb691d" ], "x-ms-correlation-request-id": [ - "54c4eb13-eac7-4e80-b35d-feabe1bf654c" + "a78c5a3c-caf8-4a83-85c2-b013ea85f126" ], "x-ms-arm-service-request-id": [ - "764a6306-c1ad-4138-8ae9-4cef8243925d" + "0a7f0db2-ef2e-46aa-b4c1-0bf2e9dee099" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4027,13 +4231,13 @@ "11978" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074347Z:54c4eb13-eac7-4e80-b35d-feabe1bf654c" + "WESTUS:20200616T192550Z:a78c5a3c-caf8-4a83-85c2-b013ea85f126" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:47 GMT" + "Tue, 16 Jun 2020 19:25:50 GMT" ], "Content-Length": [ "30" @@ -4049,8 +4253,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4058,7 +4262,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4072,13 +4276,13 @@ "10" ], "x-ms-request-id": [ - "57a05ef0-40b8-4934-b2c3-ed1623105bb0" + "1ea52e66-de82-4246-8030-7ae9917efb2a" ], "x-ms-correlation-request-id": [ - "e10bf340-e488-4417-9a3f-cd5247ff5d66" + "720d5240-574f-4595-b0d8-86ef3330e85d" ], "x-ms-arm-service-request-id": [ - "70d6e969-1ae8-4622-ad78-2b75ecf7288f" + "bf29ef52-0fb8-48ee-84ee-985a89dcace3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4091,13 +4295,13 @@ "11977" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074357Z:e10bf340-e488-4417-9a3f-cd5247ff5d66" + "WESTUS:20200616T192601Z:720d5240-574f-4595-b0d8-86ef3330e85d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:43:57 GMT" + "Tue, 16 Jun 2020 19:26:00 GMT" ], "Content-Length": [ "30" @@ -4113,8 +4317,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4122,7 +4326,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4136,13 +4340,13 @@ "10" ], "x-ms-request-id": [ - "a0d4c844-382f-45f9-90f0-8e1b758d5bec" + "c6c912b3-2310-42bb-8508-c9355eea9397" ], "x-ms-correlation-request-id": [ - "f2601946-e963-4605-abe9-e6376e861a3b" + "d1293a96-ccae-47d5-b2a1-f0245fb30ce2" ], "x-ms-arm-service-request-id": [ - "3ec41708-5251-4d24-a3c2-3b5b27d694be" + "e1ed9a66-09cb-4bea-a4b4-7da3833a9cbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4155,13 +4359,13 @@ "11976" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074407Z:f2601946-e963-4605-abe9-e6376e861a3b" + "WESTUS:20200616T192611Z:d1293a96-ccae-47d5-b2a1-f0245fb30ce2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:07 GMT" + "Tue, 16 Jun 2020 19:26:10 GMT" ], "Content-Length": [ "30" @@ -4177,8 +4381,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4186,7 +4390,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4200,13 +4404,13 @@ "10" ], "x-ms-request-id": [ - "074b6300-34a4-4d7a-8523-1696cea9829d" + "b8b2c195-6985-4c0e-b672-d2f9d6478754" ], "x-ms-correlation-request-id": [ - "10f23e5f-bfec-407a-b3e0-8605abe8e43b" + "8baa86b3-2e40-4926-975d-408532763424" ], "x-ms-arm-service-request-id": [ - "5240d09a-bdcb-4d15-a1b9-23ef438149b9" + "9db64198-133b-4e14-b391-4d72cad0e74e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4219,13 +4423,13 @@ "11975" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074417Z:10f23e5f-bfec-407a-b3e0-8605abe8e43b" + "WESTUS:20200616T192621Z:8baa86b3-2e40-4926-975d-408532763424" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:17 GMT" + "Tue, 16 Jun 2020 19:26:20 GMT" ], "Content-Length": [ "30" @@ -4241,8 +4445,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4250,7 +4454,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4264,13 +4468,13 @@ "10" ], "x-ms-request-id": [ - "1f32d96c-030e-43b5-9743-a20b1f112a62" + "041e3658-58dd-45df-b1dc-cafc5e71b3dd" ], "x-ms-correlation-request-id": [ - "b84007e4-d5a5-48d1-9c84-0c34314dfa85" + "970a2d11-a71c-4aa2-b487-43e2d0498633" ], "x-ms-arm-service-request-id": [ - "74cf31fc-9264-4e77-8844-aa3198ad91ec" + "f71deb3c-a5d9-46dd-b5d0-9799f95d4c5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4283,13 +4487,13 @@ "11974" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074427Z:b84007e4-d5a5-48d1-9c84-0c34314dfa85" + "WESTUS:20200616T192631Z:970a2d11-a71c-4aa2-b487-43e2d0498633" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:27 GMT" + "Tue, 16 Jun 2020 19:26:30 GMT" ], "Content-Length": [ "30" @@ -4305,8 +4509,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4314,7 +4518,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4328,13 +4532,13 @@ "10" ], "x-ms-request-id": [ - "f95bfbef-23cd-49ec-91fc-402668e9e259" + "5abb84d1-b738-4006-b54c-7899df2b5b26" ], "x-ms-correlation-request-id": [ - "a4784498-e8b8-43a1-8636-74e8051c2ef0" + "f93e1f4f-bfeb-4e86-b5ea-4278e8ecaeaf" ], "x-ms-arm-service-request-id": [ - "2a04ad4f-8a97-4f8e-a1d4-d4165d4dfa6f" + "04bea505-db32-4045-a23a-b0a5a956c6e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4347,13 +4551,13 @@ "11973" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074438Z:a4784498-e8b8-43a1-8636-74e8051c2ef0" + "WESTUS:20200616T192641Z:f93e1f4f-bfeb-4e86-b5ea-4278e8ecaeaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:37 GMT" + "Tue, 16 Jun 2020 19:26:40 GMT" ], "Content-Length": [ "30" @@ -4369,8 +4573,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4378,7 +4582,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4392,13 +4596,13 @@ "10" ], "x-ms-request-id": [ - "dac3f815-6a52-4f75-8692-17d2a3a1a42e" + "8c1136a7-63c3-43d9-a361-3d531cd25300" ], "x-ms-correlation-request-id": [ - "c6c639b0-03d0-416a-92c6-805a38962061" + "292fa7ae-b796-4205-94a9-c18ad3c8642f" ], "x-ms-arm-service-request-id": [ - "89666ab7-a690-46ee-a760-2df942a6c2df" + "7b2f0be8-4094-449b-9059-c2655f450727" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4411,13 +4615,13 @@ "11972" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074448Z:c6c639b0-03d0-416a-92c6-805a38962061" + "WESTUS:20200616T192651Z:292fa7ae-b796-4205-94a9-c18ad3c8642f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:48 GMT" + "Tue, 16 Jun 2020 19:26:50 GMT" ], "Content-Length": [ "30" @@ -4433,8 +4637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4442,7 +4646,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4456,13 +4660,13 @@ "10" ], "x-ms-request-id": [ - "c94dce66-b699-48d6-9ed6-74f87cd2e913" + "e098014c-8b85-445d-b736-5ebce3d38e4a" ], "x-ms-correlation-request-id": [ - "eaa0c2ca-cf0e-42d1-a054-290f381a6637" + "f1e42954-5438-43df-8428-487ef136e66b" ], "x-ms-arm-service-request-id": [ - "afe74429-abe7-4ad3-8a1a-c743a25fde0f" + "2a01d9b3-9b60-4fb8-9e3a-e8553c4cbfaa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4475,13 +4679,13 @@ "11971" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074458Z:eaa0c2ca-cf0e-42d1-a054-290f381a6637" + "WESTUS:20200616T192701Z:f1e42954-5438-43df-8428-487ef136e66b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:44:58 GMT" + "Tue, 16 Jun 2020 19:27:00 GMT" ], "Content-Length": [ "30" @@ -4497,8 +4701,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4506,7 +4710,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4520,13 +4724,13 @@ "10" ], "x-ms-request-id": [ - "8abaa912-4725-4bf3-9887-7e341039a97e" + "74f732e8-1c2c-4c75-98c7-df003ee51837" ], "x-ms-correlation-request-id": [ - "c298cd6a-a872-4e84-98ff-5c9053eaef26" + "a6847880-64f1-4d78-b915-12fc18596eaf" ], "x-ms-arm-service-request-id": [ - "0b709041-f8c5-497c-a3d5-1afef43c3511" + "6280b80a-5f01-4ed7-85b9-9306c79a2539" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4539,13 +4743,13 @@ "11970" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074508Z:c298cd6a-a872-4e84-98ff-5c9053eaef26" + "WESTUS:20200616T192711Z:a6847880-64f1-4d78-b915-12fc18596eaf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:08 GMT" + "Tue, 16 Jun 2020 19:27:11 GMT" ], "Content-Length": [ "30" @@ -4561,8 +4765,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4570,7 +4774,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4584,13 +4788,13 @@ "10" ], "x-ms-request-id": [ - "f9d765de-2e2c-4b1c-bf53-8f99f4503fa0" + "1806fba5-4154-4145-94d6-be9373041bf0" ], "x-ms-correlation-request-id": [ - "7a02e692-2f0c-4083-9c66-6d91b9f495e6" + "6d71ff4e-1627-4c2f-b417-e1b49c6488da" ], "x-ms-arm-service-request-id": [ - "1442c8e0-0a32-4156-9c58-558c7f1fe130" + "f9a07251-0755-4781-85b7-4c7c27084edf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4603,13 +4807,13 @@ "11969" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074518Z:7a02e692-2f0c-4083-9c66-6d91b9f495e6" + "WESTUS:20200616T192721Z:6d71ff4e-1627-4c2f-b417-e1b49c6488da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:18 GMT" + "Tue, 16 Jun 2020 19:27:21 GMT" ], "Content-Length": [ "30" @@ -4625,8 +4829,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4634,7 +4838,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4648,13 +4852,13 @@ "10" ], "x-ms-request-id": [ - "4616d21d-8b5f-4c9e-ab5c-3a6dddcacdf8" + "339fae4d-b7ae-41a0-b1a7-9192ade35a37" ], "x-ms-correlation-request-id": [ - "309beae3-d34d-4dac-b155-8043965e7362" + "bd343a81-d82f-42db-8cc9-87fe689b4d14" ], "x-ms-arm-service-request-id": [ - "c814a162-91d6-4e01-a4b2-7c4ea32d06ab" + "8417086a-1adb-49e6-a926-9a787982630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4667,13 +4871,13 @@ "11968" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074528Z:309beae3-d34d-4dac-b155-8043965e7362" + "WESTUS:20200616T192731Z:bd343a81-d82f-42db-8cc9-87fe689b4d14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:28 GMT" + "Tue, 16 Jun 2020 19:27:31 GMT" ], "Content-Length": [ "30" @@ -4689,8 +4893,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4698,7 +4902,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4712,13 +4916,13 @@ "10" ], "x-ms-request-id": [ - "14c6d1a7-3b9f-4cba-86f2-d80521dc71e6" + "6ef0ee20-9869-4d32-830a-7afd0c43c20a" ], "x-ms-correlation-request-id": [ - "59d1a4e1-8e3d-4d64-ac4e-d46c73ef71dc" + "4a2b313c-f681-4f99-8761-5647121ade0b" ], "x-ms-arm-service-request-id": [ - "c598f6cd-3e65-40a1-8786-cc416cf701e1" + "737b2875-a550-4a58-ac9b-0bdcad59b4ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4731,13 +4935,13 @@ "11967" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074538Z:59d1a4e1-8e3d-4d64-ac4e-d46c73ef71dc" + "WESTUS:20200616T192741Z:4a2b313c-f681-4f99-8761-5647121ade0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:38 GMT" + "Tue, 16 Jun 2020 19:27:41 GMT" ], "Content-Length": [ "30" @@ -4753,8 +4957,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4762,7 +4966,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4776,13 +4980,13 @@ "10" ], "x-ms-request-id": [ - "f854de6e-8848-4189-b18b-b33091ce40f2" + "60105b74-2efe-4bbc-86b5-2452aa650bdc" ], "x-ms-correlation-request-id": [ - "0b4c1716-9c0d-49d1-bb99-94aebe08095c" + "e94ca63c-e210-4ce0-b4d5-7e33412e4252" ], "x-ms-arm-service-request-id": [ - "d8571608-a69b-4b6b-9716-2fc647182845" + "858d45f6-b128-4b71-a0f2-4d817b654105" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4795,13 +4999,13 @@ "11966" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074548Z:0b4c1716-9c0d-49d1-bb99-94aebe08095c" + "WESTUS:20200616T192751Z:e94ca63c-e210-4ce0-b4d5-7e33412e4252" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:47 GMT" + "Tue, 16 Jun 2020 19:27:51 GMT" ], "Content-Length": [ "30" @@ -4817,8 +5021,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4826,7 +5030,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4840,13 +5044,13 @@ "10" ], "x-ms-request-id": [ - "34f0d764-d114-434b-9283-5b04f06121ac" + "f3ecb73e-6d17-4a43-b2de-ccfef59116d1" ], "x-ms-correlation-request-id": [ - "c6f176ef-0b20-4dc2-905a-26d33262ce10" + "0ce18619-92c0-4d20-b282-cabf4afd4388" ], "x-ms-arm-service-request-id": [ - "450c6813-843c-442d-86c7-3ec6b6155fa0" + "4a475950-1430-4b44-b038-ee81d87c5873" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4859,13 +5063,13 @@ "11965" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074558Z:c6f176ef-0b20-4dc2-905a-26d33262ce10" + "WESTUS:20200616T192801Z:0ce18619-92c0-4d20-b282-cabf4afd4388" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:45:57 GMT" + "Tue, 16 Jun 2020 19:28:01 GMT" ], "Content-Length": [ "30" @@ -4881,8 +5085,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4890,7 +5094,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4904,13 +5108,13 @@ "10" ], "x-ms-request-id": [ - "0425da74-bf92-46cc-a496-a5aef9ca0f3c" + "c901eaca-e74a-4e1c-8068-6b65380d3b24" ], "x-ms-correlation-request-id": [ - "335e11a8-5db1-42f6-a286-5a269ac924fb" + "705ea9a1-b71f-4f23-b1dc-70fe807ed473" ], "x-ms-arm-service-request-id": [ - "49be795f-be7b-427b-b1cb-3b5b18de9297" + "be95d5ec-4898-43df-9f70-acade7f5bd8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4923,13 +5127,13 @@ "11964" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074608Z:335e11a8-5db1-42f6-a286-5a269ac924fb" + "WESTUS:20200616T192811Z:705ea9a1-b71f-4f23-b1dc-70fe807ed473" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:07 GMT" + "Tue, 16 Jun 2020 19:28:11 GMT" ], "Content-Length": [ "30" @@ -4945,8 +5149,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -4954,7 +5158,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -4968,13 +5172,13 @@ "10" ], "x-ms-request-id": [ - "cdbb53c1-8b70-49a4-bb36-c16d62e7d893" + "b6992770-94b5-4118-bf36-3a5eb34abfaf" ], "x-ms-correlation-request-id": [ - "9a0c2a3e-3463-44dd-863e-c826cc498233" + "d0f8a036-27a5-4432-96f0-8263270ebcb9" ], "x-ms-arm-service-request-id": [ - "3c5940c0-8275-4570-958f-2eb09a8d462e" + "7c935e09-fee2-474a-9269-d38bc8b187f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4987,13 +5191,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074618Z:9a0c2a3e-3463-44dd-863e-c826cc498233" + "WESTUS:20200616T192821Z:d0f8a036-27a5-4432-96f0-8263270ebcb9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:17 GMT" + "Tue, 16 Jun 2020 19:28:21 GMT" ], "Content-Length": [ "30" @@ -5009,8 +5213,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5018,7 +5222,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5032,13 +5236,13 @@ "10" ], "x-ms-request-id": [ - "d639394f-32bc-47c3-b34c-e1f744afb3bf" + "31dbc0a4-14e9-4148-be09-b015d6605453" ], "x-ms-correlation-request-id": [ - "59830cc3-78f0-40a6-b146-6bc8b36c73dc" + "95e90342-b32a-4683-8b73-9edf512cfb70" ], "x-ms-arm-service-request-id": [ - "59087773-483c-4808-b07e-b565a841a6eb" + "5ef75edc-0503-4b4d-85f0-b1368240c180" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5051,13 +5255,13 @@ "11962" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074628Z:59830cc3-78f0-40a6-b146-6bc8b36c73dc" + "WESTUS:20200616T192832Z:95e90342-b32a-4683-8b73-9edf512cfb70" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:28 GMT" + "Tue, 16 Jun 2020 19:28:31 GMT" ], "Content-Length": [ "30" @@ -5073,8 +5277,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5082,7 +5286,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5096,13 +5300,13 @@ "10" ], "x-ms-request-id": [ - "812a1f85-afa0-4ce4-a759-dbcfe7c417d1" + "d365de67-2687-4ac7-8199-c4e1809f3a63" ], "x-ms-correlation-request-id": [ - "4733f9ad-e1cf-4721-8a3c-a6b919642e57" + "03a9425f-d05f-4f86-bd14-e9f3282da0e4" ], "x-ms-arm-service-request-id": [ - "b2337d7e-0930-43d7-81a4-aae984d130d6" + "f81b2db8-4346-4ed8-93bd-104b59a59bdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5115,13 +5319,13 @@ "11961" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074638Z:4733f9ad-e1cf-4721-8a3c-a6b919642e57" + "WESTUS:20200616T192842Z:03a9425f-d05f-4f86-bd14-e9f3282da0e4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:37 GMT" + "Tue, 16 Jun 2020 19:28:41 GMT" ], "Content-Length": [ "30" @@ -5137,8 +5341,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5146,7 +5350,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5160,13 +5364,13 @@ "10" ], "x-ms-request-id": [ - "c80f050f-d59f-486e-a207-23965c00f9e8" + "fc059c9a-8e04-4e00-a4f5-45b7a404b3ea" ], "x-ms-correlation-request-id": [ - "8f157c7b-3f63-4d87-9a69-8e0505d11780" + "e1bedb77-7834-49f5-93f2-baa7ccd90137" ], "x-ms-arm-service-request-id": [ - "d0e74736-252e-4c44-8be6-35c11da79e72" + "f790cb8e-2066-4401-873a-9faeb9a9ac98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5179,13 +5383,13 @@ "11960" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074648Z:8f157c7b-3f63-4d87-9a69-8e0505d11780" + "WESTUS:20200616T192852Z:e1bedb77-7834-49f5-93f2-baa7ccd90137" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:48 GMT" + "Tue, 16 Jun 2020 19:28:51 GMT" ], "Content-Length": [ "30" @@ -5201,8 +5405,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5210,7 +5414,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5224,13 +5428,13 @@ "10" ], "x-ms-request-id": [ - "d85072d0-15e4-4e6b-922e-48272dcb4948" + "88a3daa6-b98c-479f-b831-c586c8624541" ], "x-ms-correlation-request-id": [ - "0d3aa2f6-ca99-42dc-91d2-7b38b5f107a2" + "cd6b5dce-26f1-4c1d-ad54-331b9badbd37" ], "x-ms-arm-service-request-id": [ - "405fb37f-e223-42cf-9e73-4b521b4c791e" + "c12f9cce-0c3e-4311-a88e-6f592e79fe1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5243,13 +5447,13 @@ "11959" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074659Z:0d3aa2f6-ca99-42dc-91d2-7b38b5f107a2" + "WESTUS:20200616T192902Z:cd6b5dce-26f1-4c1d-ad54-331b9badbd37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:46:58 GMT" + "Tue, 16 Jun 2020 19:29:01 GMT" ], "Content-Length": [ "30" @@ -5265,8 +5469,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5274,7 +5478,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5288,13 +5492,13 @@ "10" ], "x-ms-request-id": [ - "57bd965e-bfe5-4d51-82d9-b9c5d50e321f" + "7281be6b-e4aa-4814-a212-e475273c044a" ], "x-ms-correlation-request-id": [ - "a8b56954-26b2-4791-9b86-ecb91e524e95" + "0c002d94-f46f-4fff-ba33-07093e9d235d" ], "x-ms-arm-service-request-id": [ - "8d612d06-e55a-41e0-87d7-ccd709163331" + "fd45466a-ebdf-444e-b299-86234117fea0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5307,13 +5511,13 @@ "11958" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074709Z:a8b56954-26b2-4791-9b86-ecb91e524e95" + "WESTUS:20200616T192912Z:0c002d94-f46f-4fff-ba33-07093e9d235d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:08 GMT" + "Tue, 16 Jun 2020 19:29:12 GMT" ], "Content-Length": [ "30" @@ -5329,8 +5533,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5338,7 +5542,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5352,13 +5556,13 @@ "10" ], "x-ms-request-id": [ - "deda99a3-b4bd-4f4d-ab70-d69ec70f3505" + "4874ffda-9190-4ce7-a9ff-bb85711da174" ], "x-ms-correlation-request-id": [ - "55258186-d935-47e7-9d91-8e622752a32d" + "1c27385a-a00d-4c3a-9a7f-b38a285cd29a" ], "x-ms-arm-service-request-id": [ - "226cbf98-54f6-4157-b3c9-2d5aa8024534" + "8b0787f1-cfad-40e2-8049-caa5faa2bf73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5371,13 +5575,13 @@ "11957" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074719Z:55258186-d935-47e7-9d91-8e622752a32d" + "WESTUS:20200616T192922Z:1c27385a-a00d-4c3a-9a7f-b38a285cd29a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:18 GMT" + "Tue, 16 Jun 2020 19:29:22 GMT" ], "Content-Length": [ "30" @@ -5393,8 +5597,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5402,7 +5606,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5416,13 +5620,13 @@ "10" ], "x-ms-request-id": [ - "841a4012-bb6c-44de-a290-515018129fe3" + "1f50cc16-2c9a-43dc-a3f3-8ad10b983f96" ], "x-ms-correlation-request-id": [ - "83874a1c-7be7-4910-9fea-a236e33be6d7" + "b7df9ca0-3692-4091-9a22-2ea2f036517e" ], "x-ms-arm-service-request-id": [ - "1830e516-f27b-4f19-a6d4-277e09db2bc2" + "131a15ef-cb21-4a4b-a5f7-bc6e8a71e276" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5435,13 +5639,13 @@ "11956" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074729Z:83874a1c-7be7-4910-9fea-a236e33be6d7" + "WESTUS:20200616T192932Z:b7df9ca0-3692-4091-9a22-2ea2f036517e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:28 GMT" + "Tue, 16 Jun 2020 19:29:32 GMT" ], "Content-Length": [ "30" @@ -5457,8 +5661,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5466,7 +5670,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5480,13 +5684,13 @@ "10" ], "x-ms-request-id": [ - "df4e6680-13dc-43fb-82d5-ce0345f1d0ea" + "b391e963-2c39-43ba-945b-7661a8b998e9" ], "x-ms-correlation-request-id": [ - "4c2f2168-1e74-4e66-b600-b3607de00580" + "278732be-292f-4d8b-80fe-04ecabdc9001" ], "x-ms-arm-service-request-id": [ - "867423a9-d5f0-428b-89f7-1d8b8a40f426" + "dace1202-1264-421a-a836-e7bfafd360df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5499,13 +5703,13 @@ "11955" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074739Z:4c2f2168-1e74-4e66-b600-b3607de00580" + "WESTUS:20200616T192942Z:278732be-292f-4d8b-80fe-04ecabdc9001" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:38 GMT" + "Tue, 16 Jun 2020 19:29:42 GMT" ], "Content-Length": [ "30" @@ -5521,8 +5725,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5530,7 +5734,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5544,13 +5748,13 @@ "10" ], "x-ms-request-id": [ - "cbb4896c-e1ab-4df6-a10f-496ab7ff5629" + "6d70f060-243e-441e-81bf-7b4e2890da2c" ], "x-ms-correlation-request-id": [ - "11c18fdc-2e80-440e-851e-6b2b05bf85dc" + "dee31924-2bcb-45e1-b4b7-cdfc6015dbbe" ], "x-ms-arm-service-request-id": [ - "0cf81e51-242c-43ac-879a-17710a4bcdfd" + "21496f9c-50bb-47fd-80d5-d6becfecc8d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5563,13 +5767,13 @@ "11954" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074749Z:11c18fdc-2e80-440e-851e-6b2b05bf85dc" + "WESTUS:20200616T192952Z:dee31924-2bcb-45e1-b4b7-cdfc6015dbbe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:48 GMT" + "Tue, 16 Jun 2020 19:29:52 GMT" ], "Content-Length": [ "30" @@ -5585,8 +5789,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5594,7 +5798,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5608,13 +5812,13 @@ "10" ], "x-ms-request-id": [ - "60fa42de-3939-488e-b3e6-9e3ccde489a7" + "c02f2b3f-1751-470b-9eb8-dae24f008c7a" ], "x-ms-correlation-request-id": [ - "207c12b6-6eb5-4970-9a3c-0c55a654cdb5" + "fa93446d-90ef-4b72-9fd2-eb36559e91fe" ], "x-ms-arm-service-request-id": [ - "f1c45a99-8ece-4e41-a3f4-e2b4be077c01" + "7de6256a-1474-4155-b899-4028a93d17b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5627,13 +5831,13 @@ "11953" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074759Z:207c12b6-6eb5-4970-9a3c-0c55a654cdb5" + "WESTUS:20200616T193002Z:fa93446d-90ef-4b72-9fd2-eb36559e91fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:47:58 GMT" + "Tue, 16 Jun 2020 19:30:02 GMT" ], "Content-Length": [ "30" @@ -5649,8 +5853,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5658,7 +5862,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5672,13 +5876,13 @@ "10" ], "x-ms-request-id": [ - "f0b7613f-6fdc-4487-934e-05a0fc276a2a" + "51ffeabc-4aca-45d9-b1e8-ec7ecfd469cc" ], "x-ms-correlation-request-id": [ - "b70ef13c-a3de-4047-bd9a-67f456101cc5" + "5b76389a-bcf5-4d68-b2d1-9a2e14c8d626" ], "x-ms-arm-service-request-id": [ - "a0b3b30c-b9cc-4b5d-8c5d-33ac3b9c8f5f" + "31d3402e-458d-416b-b131-d7e02bb6b9e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5691,13 +5895,13 @@ "11952" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074809Z:b70ef13c-a3de-4047-bd9a-67f456101cc5" + "WESTUS:20200616T193012Z:5b76389a-bcf5-4d68-b2d1-9a2e14c8d626" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:08 GMT" + "Tue, 16 Jun 2020 19:30:12 GMT" ], "Content-Length": [ "30" @@ -5713,8 +5917,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5722,7 +5926,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5736,13 +5940,13 @@ "10" ], "x-ms-request-id": [ - "55682dc4-155e-4003-9b92-72ff48848299" + "c1923c2b-2ab4-4c7b-9be2-804356c62b1e" ], "x-ms-correlation-request-id": [ - "5a007c17-cfee-4785-9aea-a643e60eff78" + "852e89c1-699e-4388-86d9-e47ea7c27a99" ], "x-ms-arm-service-request-id": [ - "c79608d4-9a00-404b-b569-4c787e6c0b51" + "0fe383eb-22e4-4938-8b3a-714b2a590e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5755,13 +5959,13 @@ "11951" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074819Z:5a007c17-cfee-4785-9aea-a643e60eff78" + "WESTUS:20200616T193022Z:852e89c1-699e-4388-86d9-e47ea7c27a99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:18 GMT" + "Tue, 16 Jun 2020 19:30:22 GMT" ], "Content-Length": [ "30" @@ -5777,8 +5981,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5786,7 +5990,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5800,13 +6004,13 @@ "10" ], "x-ms-request-id": [ - "7cd2b1a3-02ee-423a-b7b0-86c6d94523d3" + "6b333ce8-098e-4ca2-9906-ffe8fd27d98b" ], "x-ms-correlation-request-id": [ - "707a68bf-a6c2-471c-a984-af680983b2f4" + "f82d941b-8723-4748-b811-13b42648e7b0" ], "x-ms-arm-service-request-id": [ - "bd6a4dd1-955d-4a10-8524-bdf839109838" + "c6425353-1198-4be2-8852-76fbfdddd9a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5819,13 +6023,13 @@ "11950" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074829Z:707a68bf-a6c2-471c-a984-af680983b2f4" + "WESTUS:20200616T193032Z:f82d941b-8723-4748-b811-13b42648e7b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:28 GMT" + "Tue, 16 Jun 2020 19:30:32 GMT" ], "Content-Length": [ "30" @@ -5841,8 +6045,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5850,7 +6054,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5864,13 +6068,13 @@ "10" ], "x-ms-request-id": [ - "e838f37e-49ac-4ce7-8972-8203538ac5ab" + "c2df3331-1c3f-4aa1-b6f1-c99161d13345" ], "x-ms-correlation-request-id": [ - "f4356acc-db43-4b30-8a36-07fff4652899" + "163b2011-f7d0-4f93-bf75-67a3107f24e3" ], "x-ms-arm-service-request-id": [ - "c222502c-4855-4263-8cb6-4549cd9e9f48" + "6cb76777-16ec-45c3-b07e-0244efb056ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5883,13 +6087,13 @@ "11949" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074839Z:f4356acc-db43-4b30-8a36-07fff4652899" + "WESTUS:20200616T193042Z:163b2011-f7d0-4f93-bf75-67a3107f24e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:38 GMT" + "Tue, 16 Jun 2020 19:30:42 GMT" ], "Content-Length": [ "30" @@ -5905,8 +6109,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5914,7 +6118,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5928,13 +6132,13 @@ "10" ], "x-ms-request-id": [ - "e6c7cdff-65ad-4203-8891-9561a1e1b217" + "172d011e-e525-498e-baa7-10557a2663cd" ], "x-ms-correlation-request-id": [ - "6528eab2-b69f-457e-bb1b-df97f81f3527" + "9940dc89-a020-42a2-8949-b1cfd44ec71c" ], "x-ms-arm-service-request-id": [ - "8b1bf8a2-c63f-495c-a257-48d7138e0439" + "06bc08db-03ec-4946-8186-557839772a9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5947,13 +6151,13 @@ "11948" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074849Z:6528eab2-b69f-457e-bb1b-df97f81f3527" + "WESTUS:20200616T193052Z:9940dc89-a020-42a2-8949-b1cfd44ec71c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:48 GMT" + "Tue, 16 Jun 2020 19:30:51 GMT" ], "Content-Length": [ "30" @@ -5969,8 +6173,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -5978,7 +6182,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -5992,13 +6196,13 @@ "10" ], "x-ms-request-id": [ - "2876d2e3-5060-4f91-9534-798fa0ca81b5" + "e7b57db2-9e8a-4f88-b75c-219c99bae022" ], "x-ms-correlation-request-id": [ - "f6255eda-0d6c-41b7-9e5e-9c6dafe13c46" + "0350b1b5-279b-47c5-b202-41a3d2a6162d" ], "x-ms-arm-service-request-id": [ - "0a52b53c-bae4-4579-9efa-fe0c2ec617b0" + "09b32b33-539c-4e49-b188-28af0d8ed600" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6011,13 +6215,13 @@ "11947" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074859Z:f6255eda-0d6c-41b7-9e5e-9c6dafe13c46" + "WESTUS:20200616T193102Z:0350b1b5-279b-47c5-b202-41a3d2a6162d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:48:59 GMT" + "Tue, 16 Jun 2020 19:31:02 GMT" ], "Content-Length": [ "30" @@ -6033,8 +6237,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6042,7 +6246,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6056,13 +6260,13 @@ "10" ], "x-ms-request-id": [ - "daea5e06-59d5-4213-80f0-ae107a47e349" + "ab952211-39de-4fd5-abbf-511567916d33" ], "x-ms-correlation-request-id": [ - "66e32642-00bd-4330-998f-80352cd6723d" + "4d56ef0a-f7a8-48e7-a3dc-e3b79caa4f2b" ], "x-ms-arm-service-request-id": [ - "28ecb231-c62a-4424-9d10-d25852d8a1ff" + "c85c410f-0a10-4e94-9b68-f8d1f59aa44f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6075,13 +6279,13 @@ "11946" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074909Z:66e32642-00bd-4330-998f-80352cd6723d" + "WESTUS:20200616T193113Z:4d56ef0a-f7a8-48e7-a3dc-e3b79caa4f2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:09 GMT" + "Tue, 16 Jun 2020 19:31:12 GMT" ], "Content-Length": [ "30" @@ -6097,8 +6301,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6106,7 +6310,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6120,13 +6324,13 @@ "10" ], "x-ms-request-id": [ - "c4836677-dbe7-4cf3-bf76-97c909c1f949" + "6d10e0e2-3a3d-45a7-83c8-929cf2974f17" ], "x-ms-correlation-request-id": [ - "e6e02413-64cb-4ae2-ba36-c8cfae5135aa" + "a7b03988-3204-4407-9652-8a84cf8fb0b0" ], "x-ms-arm-service-request-id": [ - "7ce44306-b39d-4564-9498-715f0cbb971a" + "e792ee57-6cc2-463e-8f93-1e24203db009" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6139,13 +6343,13 @@ "11945" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074919Z:e6e02413-64cb-4ae2-ba36-c8cfae5135aa" + "WESTUS:20200616T193123Z:a7b03988-3204-4407-9652-8a84cf8fb0b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:19 GMT" + "Tue, 16 Jun 2020 19:31:22 GMT" ], "Content-Length": [ "30" @@ -6161,8 +6365,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6170,7 +6374,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6184,13 +6388,13 @@ "10" ], "x-ms-request-id": [ - "fcae4103-5d3e-40f4-a31f-776f508e3f46" + "57bd953d-a64b-4470-93e0-0b76b38e83a8" ], "x-ms-correlation-request-id": [ - "f3f4db81-c8ae-46aa-8bb9-4b51b26a06a4" + "62e4e787-f446-43f6-bfcc-ceecd46d4eca" ], "x-ms-arm-service-request-id": [ - "674da18c-918d-44cd-8337-a423ba8854a8" + "f84fc962-2eac-4cda-b10a-3a39720f14e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6203,13 +6407,13 @@ "11944" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074929Z:f3f4db81-c8ae-46aa-8bb9-4b51b26a06a4" + "WESTUS:20200616T193133Z:62e4e787-f446-43f6-bfcc-ceecd46d4eca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:29 GMT" + "Tue, 16 Jun 2020 19:31:32 GMT" ], "Content-Length": [ "30" @@ -6225,8 +6429,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6234,7 +6438,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6248,13 +6452,13 @@ "10" ], "x-ms-request-id": [ - "faa6fa02-7b94-462c-968c-f04d2867eae3" + "ece2e7c4-88fb-459a-817c-bdb90e24ad66" ], "x-ms-correlation-request-id": [ - "db3c80ff-f00b-47c4-a2c5-57a113eee296" + "697c58d8-48a9-428e-9d80-89de5c024451" ], "x-ms-arm-service-request-id": [ - "b92dc6fa-956e-4914-89fc-7368814e4361" + "1e9adce8-2e3a-4305-afc1-774a4d62cd61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6267,13 +6471,13 @@ "11943" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074940Z:db3c80ff-f00b-47c4-a2c5-57a113eee296" + "WESTUS:20200616T193143Z:697c58d8-48a9-428e-9d80-89de5c024451" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:39 GMT" + "Tue, 16 Jun 2020 19:31:42 GMT" ], "Content-Length": [ "30" @@ -6289,8 +6493,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6298,7 +6502,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6312,13 +6516,13 @@ "10" ], "x-ms-request-id": [ - "a0e09818-c655-4260-befe-1f9a3925cda8" + "a28d3725-2025-4316-aba9-7b62b328745c" ], "x-ms-correlation-request-id": [ - "761bafd4-6894-4c6d-a3ac-46c7de62b333" + "6505d157-f7a0-46e0-a7f3-4a7d1f042d56" ], "x-ms-arm-service-request-id": [ - "b5c1be35-d4e0-4eb6-a5b8-c51ba7763df1" + "e1fadd8a-5cad-4ec3-b2b4-ee2ed0bb2de6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6331,13 +6535,13 @@ "11942" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T074950Z:761bafd4-6894-4c6d-a3ac-46c7de62b333" + "WESTUS:20200616T193153Z:6505d157-f7a0-46e0-a7f3-4a7d1f042d56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:49 GMT" + "Tue, 16 Jun 2020 19:31:52 GMT" ], "Content-Length": [ "30" @@ -6353,8 +6557,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6362,7 +6566,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6376,13 +6580,13 @@ "10" ], "x-ms-request-id": [ - "31bef430-d7ff-42f0-af71-d521646ea055" + "01a54b0d-2153-4e45-991c-662a8e8bdf0a" ], "x-ms-correlation-request-id": [ - "0296f4e2-81a5-4f93-a153-596ce81e2697" + "fca4b294-cb38-4c71-bc09-9c5ceee955a1" ], "x-ms-arm-service-request-id": [ - "115f3d14-aacc-4d15-b66f-a344f732e639" + "b73c711a-5123-46bd-a649-9275e005ee6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6395,13 +6599,13 @@ "11941" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075000Z:0296f4e2-81a5-4f93-a153-596ce81e2697" + "WESTUS:20200616T193203Z:fca4b294-cb38-4c71-bc09-9c5ceee955a1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:49:59 GMT" + "Tue, 16 Jun 2020 19:32:02 GMT" ], "Content-Length": [ "30" @@ -6417,8 +6621,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6426,7 +6630,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6440,13 +6644,13 @@ "10" ], "x-ms-request-id": [ - "4be1e1a2-e7a5-49b3-8bec-60a46ab62c66" + "1ca66e9a-36be-4a6f-b746-213b29011290" ], "x-ms-correlation-request-id": [ - "adf21829-8561-4b3c-aac7-bec60e4a0e65" + "c1b21871-62b1-4985-80b2-3e8e74fc924a" ], "x-ms-arm-service-request-id": [ - "10e6bb68-26a3-4c5c-a7e3-e3734d90819c" + "6de3e9fd-3ad4-463d-86ff-73ee99c62bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6459,13 +6663,13 @@ "11940" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075010Z:adf21829-8561-4b3c-aac7-bec60e4a0e65" + "WESTUS:20200616T193213Z:c1b21871-62b1-4985-80b2-3e8e74fc924a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:50:09 GMT" + "Tue, 16 Jun 2020 19:32:12 GMT" ], "Content-Length": [ "30" @@ -6481,8 +6685,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6490,7 +6694,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6504,13 +6708,13 @@ "10" ], "x-ms-request-id": [ - "a40866aa-2430-4508-a291-8e14eb41d139" + "2917eaba-552f-45cf-8d6a-5c23de085800" ], "x-ms-correlation-request-id": [ - "45cf25af-bb9b-474a-92b9-07b873b755c5" + "4e75789b-d38c-48b2-9ed0-ea429175e3dd" ], "x-ms-arm-service-request-id": [ - "6df8e7ab-a615-4581-ab25-feea5d401cbd" + "2cc27e59-33dc-46e2-8799-559b9cd41983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6523,13 +6727,13 @@ "11939" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075020Z:45cf25af-bb9b-474a-92b9-07b873b755c5" + "WESTUS:20200616T193223Z:4e75789b-d38c-48b2-9ed0-ea429175e3dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:50:20 GMT" + "Tue, 16 Jun 2020 19:32:22 GMT" ], "Content-Length": [ "30" @@ -6545,8 +6749,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6554,7 +6758,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6568,13 +6772,13 @@ "10" ], "x-ms-request-id": [ - "75792747-83f6-4e14-8b6f-a8e6935b8db2" + "b9b7f147-0b0d-4ebd-b61c-ec7d5e7e5b8c" ], "x-ms-correlation-request-id": [ - "732f4272-ed0a-40d6-a692-7c5e3229a3a5" + "1b7dbd71-05d3-4301-82f2-0d44d4d2fe9f" ], "x-ms-arm-service-request-id": [ - "38badfcc-6477-49a8-8575-1bc653fe3f38" + "d14f87b7-7783-4002-a1aa-150febc8b182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6587,13 +6791,13 @@ "11938" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075030Z:732f4272-ed0a-40d6-a692-7c5e3229a3a5" + "WESTUS:20200616T193233Z:1b7dbd71-05d3-4301-82f2-0d44d4d2fe9f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:50:30 GMT" + "Tue, 16 Jun 2020 19:32:32 GMT" ], "Content-Length": [ "30" @@ -6609,8 +6813,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6618,7 +6822,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6632,13 +6836,13 @@ "10" ], "x-ms-request-id": [ - "5e85e5b2-421f-460e-82d5-9af41810ad7a" + "641f2043-d16f-453b-8b9f-7ba6ebab8182" ], "x-ms-correlation-request-id": [ - "93d2c95b-4437-48e8-8572-b1ca2b7dbddc" + "55235c0d-0732-4e64-aa1f-6c7c823efb99" ], "x-ms-arm-service-request-id": [ - "37d8edd9-0edb-4850-b09f-83a14d42355b" + "3a0ef926-27f0-4532-aefa-2669ddfe88bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6651,13 +6855,13 @@ "11937" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075040Z:93d2c95b-4437-48e8-8572-b1ca2b7dbddc" + "WESTUS:20200616T193243Z:55235c0d-0732-4e64-aa1f-6c7c823efb99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:50:40 GMT" + "Tue, 16 Jun 2020 19:32:42 GMT" ], "Content-Length": [ "30" @@ -6673,8 +6877,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6682,7 +6886,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6696,13 +6900,13 @@ "10" ], "x-ms-request-id": [ - "45c41b45-8edf-4d38-bd6e-d8632bdfe9a2" + "b045af77-2102-41f6-bc94-ece3a1f476de" ], "x-ms-correlation-request-id": [ - "0404b34d-6c41-4a00-9a7c-5f9362f857b5" + "5996d6a9-8365-43b5-9b1f-36081f97442a" ], "x-ms-arm-service-request-id": [ - "6e454532-5ae0-4f20-9e0e-1a340bfa6b15" + "c742f164-f6b7-490d-8d2e-a972e2ddeb3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6715,13 +6919,13 @@ "11936" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075050Z:0404b34d-6c41-4a00-9a7c-5f9362f857b5" + "WESTUS:20200616T193253Z:5996d6a9-8365-43b5-9b1f-36081f97442a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:50:50 GMT" + "Tue, 16 Jun 2020 19:32:52 GMT" ], "Content-Length": [ "30" @@ -6737,8 +6941,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6746,7 +6950,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6760,13 +6964,13 @@ "10" ], "x-ms-request-id": [ - "e12997d3-b2fd-483a-8f59-7bace6f1cc85" + "1e1da182-8e81-40cb-8af2-39a5644e4da6" ], "x-ms-correlation-request-id": [ - "f96749a5-9afe-4b0b-a411-2df3870f5e8a" + "2ba0a8fd-9392-46eb-8cc5-db2a64fce0a6" ], "x-ms-arm-service-request-id": [ - "68970abe-c6ec-418b-a0d2-69a9de2d6cca" + "5fadfe32-f14e-4e66-ae00-4c1be53aba3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6779,13 +6983,13 @@ "11935" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075100Z:f96749a5-9afe-4b0b-a411-2df3870f5e8a" + "WESTUS:20200616T193303Z:2ba0a8fd-9392-46eb-8cc5-db2a64fce0a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:00 GMT" + "Tue, 16 Jun 2020 19:33:02 GMT" ], "Content-Length": [ "30" @@ -6801,8 +7005,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6810,7 +7014,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6824,13 +7028,13 @@ "10" ], "x-ms-request-id": [ - "6a8c77c0-5e7d-4683-9cb9-9efbee026963" + "e6bc1def-34e1-4bf8-8083-883a18eaa3d7" ], "x-ms-correlation-request-id": [ - "fd5a6129-dd72-4248-92a6-b1d1b76c9412" + "c88671e2-71e3-4958-b3fd-6a451c5c6fd4" ], "x-ms-arm-service-request-id": [ - "5d817f0a-d60a-4022-b4a2-2a206a5eeee7" + "937743d1-3729-4dac-93f3-bf984e2c46ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6843,13 +7047,13 @@ "11934" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075110Z:fd5a6129-dd72-4248-92a6-b1d1b76c9412" + "WESTUS:20200616T193313Z:c88671e2-71e3-4958-b3fd-6a451c5c6fd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:10 GMT" + "Tue, 16 Jun 2020 19:33:13 GMT" ], "Content-Length": [ "30" @@ -6865,8 +7069,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6874,7 +7078,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6888,13 +7092,13 @@ "10" ], "x-ms-request-id": [ - "ddc27dfb-8ec4-4674-adff-f26c51a1be39" + "db073348-53f2-4d24-bcfc-917b5bc89b76" ], "x-ms-correlation-request-id": [ - "6dab61b2-72c8-414f-9b9e-11e0ad6c62d4" + "1b29906e-7c8d-4484-9dca-7722bb13d445" ], "x-ms-arm-service-request-id": [ - "c132a1d2-0e62-4a38-95ae-d63ce8684394" + "0b33119e-26ad-4988-881d-c02afdb3f402" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6907,13 +7111,13 @@ "11933" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075120Z:6dab61b2-72c8-414f-9b9e-11e0ad6c62d4" + "WESTUS:20200616T193323Z:1b29906e-7c8d-4484-9dca-7722bb13d445" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:20 GMT" + "Tue, 16 Jun 2020 19:33:23 GMT" ], "Content-Length": [ "30" @@ -6929,8 +7133,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -6938,7 +7142,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -6952,13 +7156,13 @@ "10" ], "x-ms-request-id": [ - "5ef1503c-ff11-4c98-8498-19f3d8f88ace" + "919c4e8d-d46f-4ad1-8feb-f7e79b087075" ], "x-ms-correlation-request-id": [ - "d0d475ae-5819-41da-b46b-3be9a1082ff5" + "bba47ca2-f8ab-4938-9334-c18d149a06c3" ], "x-ms-arm-service-request-id": [ - "7061999d-8db0-4d7f-9937-f894f71fd01d" + "c52ba403-b5ad-4c82-8440-e9f977cbd1c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -6971,13 +7175,13 @@ "11932" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075130Z:d0d475ae-5819-41da-b46b-3be9a1082ff5" + "WESTUS:20200616T193333Z:bba47ca2-f8ab-4938-9334-c18d149a06c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:30 GMT" + "Tue, 16 Jun 2020 19:33:33 GMT" ], "Content-Length": [ "30" @@ -6993,8 +7197,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7002,7 +7206,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7016,13 +7220,13 @@ "10" ], "x-ms-request-id": [ - "8d7d76ca-7c27-4222-8183-878234ba8556" + "eb8d5d81-2ffa-4f8b-9727-a500c46f49c9" ], "x-ms-correlation-request-id": [ - "d225e575-c689-4730-8cae-f3d4f088481d" + "203d51f8-8632-428d-84ef-a317dbe3971e" ], "x-ms-arm-service-request-id": [ - "fea91e62-3195-4bba-b46e-16aae0ae6e14" + "a7c83ef2-60b0-4176-a1c6-753ff49e416b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7035,13 +7239,13 @@ "11931" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075140Z:d225e575-c689-4730-8cae-f3d4f088481d" + "WESTUS:20200616T193344Z:203d51f8-8632-428d-84ef-a317dbe3971e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:40 GMT" + "Tue, 16 Jun 2020 19:33:43 GMT" ], "Content-Length": [ "30" @@ -7057,8 +7261,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7066,7 +7270,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7080,13 +7284,13 @@ "10" ], "x-ms-request-id": [ - "e317f439-ef84-4929-a336-d03dc9ebb736" + "c52f50f6-fcc9-453e-88de-9119005d4f42" ], "x-ms-correlation-request-id": [ - "2e567853-b523-4ffd-98f2-1639f5901711" + "79fd8408-7736-49e5-ab99-36b9642785a9" ], "x-ms-arm-service-request-id": [ - "56972d79-3f46-4f08-9a94-e7aa5171c727" + "816e6b5c-d1e4-4904-9175-860c75c6be37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7099,13 +7303,13 @@ "11930" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075150Z:2e567853-b523-4ffd-98f2-1639f5901711" + "WESTUS:20200616T193354Z:79fd8408-7736-49e5-ab99-36b9642785a9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:51:50 GMT" + "Tue, 16 Jun 2020 19:33:53 GMT" ], "Content-Length": [ "30" @@ -7121,8 +7325,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7130,7 +7334,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7144,13 +7348,13 @@ "10" ], "x-ms-request-id": [ - "b5e1aa16-f236-4297-93a5-b009109090cc" + "55fc961e-bbc5-4a82-963b-6f45aea1d077" ], "x-ms-correlation-request-id": [ - "2dab36a2-f096-4408-98e1-5762a2c33e2a" + "8e1777e5-89ef-4c8c-96fe-8fee9bf6ad2a" ], "x-ms-arm-service-request-id": [ - "0fda4bbd-aa50-4386-9b86-9fbbe4bcacb4" + "d6bca556-2929-4946-a023-de52ebac97d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7163,13 +7367,13 @@ "11929" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075200Z:2dab36a2-f096-4408-98e1-5762a2c33e2a" + "WESTUS:20200616T193404Z:8e1777e5-89ef-4c8c-96fe-8fee9bf6ad2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:00 GMT" + "Tue, 16 Jun 2020 19:34:03 GMT" ], "Content-Length": [ "30" @@ -7185,8 +7389,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7194,7 +7398,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7208,13 +7412,13 @@ "10" ], "x-ms-request-id": [ - "ebd90b91-4a18-4c03-81f9-c77041a1e142" + "dd5a028d-5362-4d4c-a0c5-3f062cb740ab" ], "x-ms-correlation-request-id": [ - "2fac67f4-131d-4465-ac81-20c082d8bd76" + "1c205cee-a086-405d-a6e6-871c25862638" ], "x-ms-arm-service-request-id": [ - "6f4e480d-1233-43e7-b993-963fbc490553" + "1398ab2c-4dfd-452f-a526-7c9678e68e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7227,13 +7431,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075210Z:2fac67f4-131d-4465-ac81-20c082d8bd76" + "WESTUS:20200616T193414Z:1c205cee-a086-405d-a6e6-871c25862638" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:09 GMT" + "Tue, 16 Jun 2020 19:34:13 GMT" ], "Content-Length": [ "30" @@ -7249,8 +7453,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7258,7 +7462,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7272,13 +7476,13 @@ "10" ], "x-ms-request-id": [ - "0ae03c33-602d-44f1-9a4d-5083e7c209db" + "121f766b-7089-461e-8127-186ffadb8e3d" ], "x-ms-correlation-request-id": [ - "6530e9a3-e027-4651-b8cd-4f91884d7941" + "fa446b5c-d3c7-4bfd-8919-2f3eaa2be996" ], "x-ms-arm-service-request-id": [ - "e15662ac-fdb7-461e-aa44-4d193a92f4e1" + "debb86fe-8468-4b54-824d-5c1af3b1ad28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7291,13 +7495,13 @@ "11927" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075221Z:6530e9a3-e027-4651-b8cd-4f91884d7941" + "WESTUS:20200616T193424Z:fa446b5c-d3c7-4bfd-8919-2f3eaa2be996" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:21 GMT" + "Tue, 16 Jun 2020 19:34:23 GMT" ], "Content-Length": [ "30" @@ -7313,8 +7517,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7322,7 +7526,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7336,13 +7540,13 @@ "10" ], "x-ms-request-id": [ - "d017a726-6ebd-4b79-81d2-bf9ade255e3c" + "b04a275d-1e89-46ba-b270-da120a857a5f" ], "x-ms-correlation-request-id": [ - "d3378150-363e-4981-8b77-2e7aef067c69" + "36cdc782-fcd2-4e0a-9225-dde7460957bb" ], "x-ms-arm-service-request-id": [ - "c702f853-6e6c-4d43-a228-fdf9f5033dc5" + "5d9a626b-45e7-499b-a3e2-43f386bc0cc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7355,13 +7559,13 @@ "11926" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075231Z:d3378150-363e-4981-8b77-2e7aef067c69" + "WESTUS:20200616T193434Z:36cdc782-fcd2-4e0a-9225-dde7460957bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:31 GMT" + "Tue, 16 Jun 2020 19:34:33 GMT" ], "Content-Length": [ "30" @@ -7377,8 +7581,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7386,7 +7590,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7400,13 +7604,13 @@ "10" ], "x-ms-request-id": [ - "9f4e0a8c-da28-48e8-b343-ed270f307254" + "5f99c2d3-ba74-4a40-8c92-739e981973c1" ], "x-ms-correlation-request-id": [ - "78033b95-8b45-4286-8cc3-16baa1f4839b" + "0eb169b2-15ce-44af-9314-12186e3902ef" ], "x-ms-arm-service-request-id": [ - "a4194314-c759-4e9a-91b1-18e9fc543847" + "e2d77740-3fc9-4e81-8e2b-7e6c0ab672a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7419,13 +7623,13 @@ "11925" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075241Z:78033b95-8b45-4286-8cc3-16baa1f4839b" + "WESTUS:20200616T193444Z:0eb169b2-15ce-44af-9314-12186e3902ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:41 GMT" + "Tue, 16 Jun 2020 19:34:43 GMT" ], "Content-Length": [ "30" @@ -7441,8 +7645,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7450,7 +7654,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7464,13 +7668,13 @@ "10" ], "x-ms-request-id": [ - "76a8596d-9223-4c05-ad13-c5587acf35ad" + "7fd3f722-2bdd-4860-b801-c242058f4e61" ], "x-ms-correlation-request-id": [ - "c3544a57-d1e5-426b-96be-a2f089e01914" + "e643691d-b2a9-4451-b730-bd83b0ee0aa7" ], "x-ms-arm-service-request-id": [ - "088353cb-27bb-43fb-9aa4-87713e704025" + "3edefef8-739b-4f51-9035-8555410fd462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7483,13 +7687,13 @@ "11924" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075251Z:c3544a57-d1e5-426b-96be-a2f089e01914" + "WESTUS:20200616T193454Z:e643691d-b2a9-4451-b730-bd83b0ee0aa7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:52:50 GMT" + "Tue, 16 Jun 2020 19:34:53 GMT" ], "Content-Length": [ "30" @@ -7505,8 +7709,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7514,7 +7718,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7528,13 +7732,13 @@ "10" ], "x-ms-request-id": [ - "f16f6288-e593-4902-8102-f4051efad9b5" + "fadd7c95-6014-4deb-9ff8-f3a63b1d90ff" ], "x-ms-correlation-request-id": [ - "dca0b3ae-a254-44f7-9152-8165c7068bb2" + "5bf3a0ca-3c45-4c3a-9c9f-b87194bda5f0" ], "x-ms-arm-service-request-id": [ - "875e0ed1-dc92-4cde-8b82-7faa079710e2" + "47573589-2105-4ac6-a9c9-8ea7cdf996c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7547,13 +7751,13 @@ "11923" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075301Z:dca0b3ae-a254-44f7-9152-8165c7068bb2" + "WESTUS:20200616T193504Z:5bf3a0ca-3c45-4c3a-9c9f-b87194bda5f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:00 GMT" + "Tue, 16 Jun 2020 19:35:03 GMT" ], "Content-Length": [ "30" @@ -7569,8 +7773,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7578,7 +7782,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7592,13 +7796,13 @@ "10" ], "x-ms-request-id": [ - "822e568f-20d1-420b-9a0e-751882953963" + "f058d3f3-99d4-45aa-9743-dc6bf465d0b0" ], "x-ms-correlation-request-id": [ - "fb9b786e-5a16-4a0c-9d47-3797f6ac39b6" + "5b88b70a-aff5-414b-8f49-36dbf476067c" ], "x-ms-arm-service-request-id": [ - "3910a73e-e97a-4cbb-88ed-267de2ef264d" + "a1370124-0017-45f5-ab98-1a5f7ba0c02c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7611,13 +7815,13 @@ "11922" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075311Z:fb9b786e-5a16-4a0c-9d47-3797f6ac39b6" + "WESTUS:20200616T193514Z:5b88b70a-aff5-414b-8f49-36dbf476067c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:10 GMT" + "Tue, 16 Jun 2020 19:35:13 GMT" ], "Content-Length": [ "30" @@ -7633,8 +7837,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7642,7 +7846,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7656,13 +7860,13 @@ "10" ], "x-ms-request-id": [ - "d58c72c0-69cb-4fec-913c-1929e8fa9c09" + "38b98414-e272-4c66-94eb-377263f70650" ], "x-ms-correlation-request-id": [ - "4dd47c9e-9516-4e33-b683-d1f8ccf63133" + "6d25749b-519d-4f41-a6ba-47ba57cb0df6" ], "x-ms-arm-service-request-id": [ - "204a4e24-530b-4a3d-a96f-cd8bcdd7ea23" + "aeac6f0a-cef8-4d68-a31c-2fd873938576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7675,13 +7879,13 @@ "11921" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075321Z:4dd47c9e-9516-4e33-b683-d1f8ccf63133" + "WESTUS:20200616T193524Z:6d25749b-519d-4f41-a6ba-47ba57cb0df6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:20 GMT" + "Tue, 16 Jun 2020 19:35:23 GMT" ], "Content-Length": [ "30" @@ -7697,8 +7901,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7706,7 +7910,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7720,13 +7924,13 @@ "10" ], "x-ms-request-id": [ - "83732262-d149-40e1-925b-b8a717157f8e" + "d029807a-1d97-476f-8051-9fac66808cb8" ], "x-ms-correlation-request-id": [ - "94bf7079-106a-4715-90c7-8b581e80bbbe" + "81a671fd-080e-4bec-9ce5-de12d81b8b19" ], "x-ms-arm-service-request-id": [ - "c9c54f7d-78c7-4ec9-b55d-fda7953c1818" + "5b061d59-89d5-4dc2-aebe-6e0a9b862a41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7739,13 +7943,13 @@ "11920" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075331Z:94bf7079-106a-4715-90c7-8b581e80bbbe" + "WESTUS:20200616T193534Z:81a671fd-080e-4bec-9ce5-de12d81b8b19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:30 GMT" + "Tue, 16 Jun 2020 19:35:34 GMT" ], "Content-Length": [ "30" @@ -7761,8 +7965,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7770,7 +7974,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7784,13 +7988,13 @@ "10" ], "x-ms-request-id": [ - "3bf6d7a7-5405-49e2-a39f-cf351150c4b6" + "4cf5eb0f-51f6-46c4-97cd-303061881090" ], "x-ms-correlation-request-id": [ - "25f4b4e0-b3c9-40a7-86fa-2a00ec2d7d28" + "178c8759-7591-476b-8d72-e8c86b890e76" ], "x-ms-arm-service-request-id": [ - "833d34be-5b48-450a-ba1e-2106f8074a05" + "b02e2c06-eb31-4e44-9fb2-93cb4ae1c48f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7803,13 +8007,13 @@ "11919" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075341Z:25f4b4e0-b3c9-40a7-86fa-2a00ec2d7d28" + "WESTUS:20200616T193544Z:178c8759-7591-476b-8d72-e8c86b890e76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:40 GMT" + "Tue, 16 Jun 2020 19:35:44 GMT" ], "Content-Length": [ "30" @@ -7825,8 +8029,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7834,7 +8038,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7848,13 +8052,13 @@ "10" ], "x-ms-request-id": [ - "2e7c91c8-2c45-40b0-bbfb-c5378af023f9" + "94e0aab7-87f5-49df-9627-166fe783ddf3" ], "x-ms-correlation-request-id": [ - "c537b522-bf83-4b92-bf08-02449257b792" + "669e1347-7f64-4fe3-a3d8-e3495492b71e" ], "x-ms-arm-service-request-id": [ - "0e6b8b7f-c5ee-4ebf-ab13-d56d11acf615" + "5502e0bf-d63d-4c40-bd21-9033aa913b83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7867,13 +8071,13 @@ "11918" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075351Z:c537b522-bf83-4b92-bf08-02449257b792" + "WESTUS:20200616T193554Z:669e1347-7f64-4fe3-a3d8-e3495492b71e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:53:50 GMT" + "Tue, 16 Jun 2020 19:35:54 GMT" ], "Content-Length": [ "30" @@ -7889,8 +8093,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7898,7 +8102,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7912,13 +8116,13 @@ "10" ], "x-ms-request-id": [ - "a2410e50-51e5-4609-84f5-6ec9ac0a6527" + "7ebd4ea9-4d1d-400c-81f7-497005682ae2" ], "x-ms-correlation-request-id": [ - "792a5ab2-c9db-4d60-a17e-02f9bdfd5c43" + "c269e1b2-d141-4404-9edd-9f2fe2039dbf" ], "x-ms-arm-service-request-id": [ - "442130f9-bc17-4b04-9f2a-9863e8c6b3df" + "27e4256f-800a-4f63-b2f8-61aa31e0ac0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7931,13 +8135,13 @@ "11917" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075401Z:792a5ab2-c9db-4d60-a17e-02f9bdfd5c43" + "WESTUS:20200616T193604Z:c269e1b2-d141-4404-9edd-9f2fe2039dbf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:00 GMT" + "Tue, 16 Jun 2020 19:36:04 GMT" ], "Content-Length": [ "30" @@ -7953,8 +8157,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -7962,7 +8166,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -7976,13 +8180,13 @@ "10" ], "x-ms-request-id": [ - "d35bc498-efae-4f32-ac59-0831d1dd2525" + "b0136bff-2730-46ac-9fea-c17ecd385c41" ], "x-ms-correlation-request-id": [ - "bcb9cd0d-ecd8-4127-9835-b1a4a21b1706" + "054da743-8382-4580-a558-68fccaa0ae09" ], "x-ms-arm-service-request-id": [ - "fd54d826-2709-4a8c-b2bc-e350cb7cff83" + "5b6e6957-c4c2-4330-8073-f41209e4dfa9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -7995,13 +8199,13 @@ "11916" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075411Z:bcb9cd0d-ecd8-4127-9835-b1a4a21b1706" + "WESTUS:20200616T193615Z:054da743-8382-4580-a558-68fccaa0ae09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:11 GMT" + "Tue, 16 Jun 2020 19:36:14 GMT" ], "Content-Length": [ "30" @@ -8017,8 +8221,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8026,7 +8230,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8040,13 +8244,13 @@ "10" ], "x-ms-request-id": [ - "c0e868db-523d-422b-8e83-6766d212080f" + "5c10ce1e-1557-4e25-85d7-179a7d5c8a87" ], "x-ms-correlation-request-id": [ - "f892bd5e-98f0-4ed7-b7b5-d54085427248" + "0f24e675-dfd4-4ed4-be9b-464f2c3978c3" ], "x-ms-arm-service-request-id": [ - "8a0bed51-74b3-4bd0-807c-4e378414a81d" + "db710b79-5e78-4dc3-bb46-528add17013a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8059,13 +8263,13 @@ "11915" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075421Z:f892bd5e-98f0-4ed7-b7b5-d54085427248" + "WESTUS:20200616T193625Z:0f24e675-dfd4-4ed4-be9b-464f2c3978c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:21 GMT" + "Tue, 16 Jun 2020 19:36:24 GMT" ], "Content-Length": [ "30" @@ -8081,8 +8285,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8090,7 +8294,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8104,13 +8308,13 @@ "10" ], "x-ms-request-id": [ - "71d91e02-c095-42b9-ad77-8be8ea293c71" + "2fd61b8a-97aa-4c5e-8e91-10db163e6f03" ], "x-ms-correlation-request-id": [ - "a4c6a38f-2cff-4b51-9321-c1466f89b302" + "12379b45-3f7a-4721-88e2-2541a506746d" ], "x-ms-arm-service-request-id": [ - "51ea12e0-a842-4575-8598-348c52b9839d" + "1f1d219c-9daa-4328-a546-f519584ee40e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8123,13 +8327,13 @@ "11914" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075431Z:a4c6a38f-2cff-4b51-9321-c1466f89b302" + "WESTUS:20200616T193635Z:12379b45-3f7a-4721-88e2-2541a506746d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:31 GMT" + "Tue, 16 Jun 2020 19:36:34 GMT" ], "Content-Length": [ "30" @@ -8145,8 +8349,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8154,7 +8358,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8168,13 +8372,13 @@ "10" ], "x-ms-request-id": [ - "6c0e8415-f808-474e-ad3b-52280b3fb99a" + "9854e4a5-044f-43b7-9035-c5ea6a813125" ], "x-ms-correlation-request-id": [ - "04654f82-8b17-4695-a224-f108f0e42fde" + "0e076015-464c-4522-8eda-87f6337ea25b" ], "x-ms-arm-service-request-id": [ - "1f476b52-7f90-4a66-ada7-58f2cc262f26" + "9f4d23ec-acc2-4873-918e-d13302aebf7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8187,13 +8391,13 @@ "11913" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075441Z:04654f82-8b17-4695-a224-f108f0e42fde" + "WESTUS:20200616T193645Z:0e076015-464c-4522-8eda-87f6337ea25b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:41 GMT" + "Tue, 16 Jun 2020 19:36:44 GMT" ], "Content-Length": [ "30" @@ -8209,8 +8413,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8218,7 +8422,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8232,13 +8436,13 @@ "10" ], "x-ms-request-id": [ - "d39b018f-0407-411e-8004-0a7aaf2d4e20" + "e2b9e3a5-be6a-4894-b97f-81046749856e" ], "x-ms-correlation-request-id": [ - "9ffe930e-71dd-42fc-85d9-f1803fa00eeb" + "d670388f-5980-4a28-8950-115f6cea9aa0" ], "x-ms-arm-service-request-id": [ - "db2308d2-a455-4f7d-be8a-a38f46c87a1a" + "51baf115-5282-4064-bed1-0a13bfb03ba7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8251,13 +8455,13 @@ "11912" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075452Z:9ffe930e-71dd-42fc-85d9-f1803fa00eeb" + "WESTUS:20200616T193655Z:d670388f-5980-4a28-8950-115f6cea9aa0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:54:51 GMT" + "Tue, 16 Jun 2020 19:36:54 GMT" ], "Content-Length": [ "30" @@ -8273,8 +8477,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8282,7 +8486,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8296,13 +8500,13 @@ "10" ], "x-ms-request-id": [ - "f8e715d8-78e0-42ea-94bf-bedeeda948a1" + "b942747d-b179-485d-bf82-d72317d89093" ], "x-ms-correlation-request-id": [ - "05359405-a851-4c65-ba01-7ce643f9fe4a" + "a6b82fb7-ee62-4bf2-83e3-ca03dd558293" ], "x-ms-arm-service-request-id": [ - "53401cb4-d816-4cf6-b1a8-643a1b0f3924" + "0bec3af2-3039-4b51-b4eb-2b0612ebda6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8315,13 +8519,13 @@ "11911" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075502Z:05359405-a851-4c65-ba01-7ce643f9fe4a" + "WESTUS:20200616T193705Z:a6b82fb7-ee62-4bf2-83e3-ca03dd558293" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:01 GMT" + "Tue, 16 Jun 2020 19:37:04 GMT" ], "Content-Length": [ "30" @@ -8337,8 +8541,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8346,7 +8550,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8360,13 +8564,13 @@ "10" ], "x-ms-request-id": [ - "0d6dd7f1-5632-4d95-8c85-1e57bd365575" + "4898390d-69d0-4a9a-b114-41c4a5938238" ], "x-ms-correlation-request-id": [ - "cf2f7792-aec9-477e-a48e-e605112915a3" + "27363550-7bdf-4f3e-abbf-f7021230feac" ], "x-ms-arm-service-request-id": [ - "13f74d1e-c8a7-4da7-a487-219e83cfd08c" + "046d215a-52a0-43d9-99d0-9eb8df6edb6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8379,13 +8583,13 @@ "11910" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075512Z:cf2f7792-aec9-477e-a48e-e605112915a3" + "WESTUS:20200616T193715Z:27363550-7bdf-4f3e-abbf-f7021230feac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:11 GMT" + "Tue, 16 Jun 2020 19:37:14 GMT" ], "Content-Length": [ "30" @@ -8401,8 +8605,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8410,7 +8614,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8424,13 +8628,13 @@ "10" ], "x-ms-request-id": [ - "135d25a3-65b8-4f14-a5cf-6330b58334d4" + "758e7ca2-0ac1-4957-8d09-6b410f224303" ], "x-ms-correlation-request-id": [ - "03c3b136-f438-4ecf-a372-92be0c1f7743" + "7d8a69bd-0b8f-4971-b7e0-6d855e5cb5de" ], "x-ms-arm-service-request-id": [ - "3ac6d655-f1a6-4139-b1d3-4dfb1849061e" + "5b006cee-2f38-4216-b714-0d23d0d41e2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8443,13 +8647,13 @@ "11909" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075522Z:03c3b136-f438-4ecf-a372-92be0c1f7743" + "WESTUS:20200616T193725Z:7d8a69bd-0b8f-4971-b7e0-6d855e5cb5de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:21 GMT" + "Tue, 16 Jun 2020 19:37:24 GMT" ], "Content-Length": [ "30" @@ -8465,8 +8669,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8474,7 +8678,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8488,13 +8692,13 @@ "10" ], "x-ms-request-id": [ - "e7cdef63-5983-459b-bf10-4a24a68a3fc4" + "7b53c816-476e-4f4d-8ad8-7fc542288964" ], "x-ms-correlation-request-id": [ - "13df4985-788b-4ac5-b35a-9e397c991051" + "6c8487ae-8045-4134-94b0-659ff9c69937" ], "x-ms-arm-service-request-id": [ - "68ab1fe7-3ee8-4396-b0af-015376e72e44" + "fb4f1724-7018-4732-9885-8492cb4a4202" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8507,13 +8711,13 @@ "11908" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075532Z:13df4985-788b-4ac5-b35a-9e397c991051" + "WESTUS:20200616T193735Z:6c8487ae-8045-4134-94b0-659ff9c69937" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:31 GMT" + "Tue, 16 Jun 2020 19:37:34 GMT" ], "Content-Length": [ "30" @@ -8529,8 +8733,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8538,7 +8742,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8552,13 +8756,13 @@ "10" ], "x-ms-request-id": [ - "459026b7-c4da-48b5-a8bd-a4ce595ad2a1" + "2fc21d6f-23dd-437e-883d-2c7955868a9f" ], "x-ms-correlation-request-id": [ - "d2ff15ee-4331-4471-b87f-dead25b121b3" + "aa0e65db-f7f7-495c-b048-e1e60249f747" ], "x-ms-arm-service-request-id": [ - "25e74f40-b876-403f-ad08-166688fdc51e" + "c328963f-2c33-4380-8f6e-8517dfb569d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8571,13 +8775,13 @@ "11907" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075542Z:d2ff15ee-4331-4471-b87f-dead25b121b3" + "WESTUS:20200616T193745Z:aa0e65db-f7f7-495c-b048-e1e60249f747" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:41 GMT" + "Tue, 16 Jun 2020 19:37:44 GMT" ], "Content-Length": [ "30" @@ -8593,8 +8797,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8602,7 +8806,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8616,13 +8820,13 @@ "10" ], "x-ms-request-id": [ - "7f0bac0c-b5da-464c-ab61-115de1e3ab4a" + "8f7c30ac-250e-4101-b963-9ec0c4a09ef2" ], "x-ms-correlation-request-id": [ - "845a43df-7836-4987-b95a-451278d4a03c" + "32267e37-61c6-4806-a860-db7c29cfc0b7" ], "x-ms-arm-service-request-id": [ - "342d600e-ab2c-4deb-8e8c-ca175614a35f" + "a7905670-257f-4714-94fa-038eebaf952d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8635,13 +8839,13 @@ "11906" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075552Z:845a43df-7836-4987-b95a-451278d4a03c" + "WESTUS:20200616T193755Z:32267e37-61c6-4806-a860-db7c29cfc0b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:55:51 GMT" + "Tue, 16 Jun 2020 19:37:54 GMT" ], "Content-Length": [ "30" @@ -8657,8 +8861,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8666,7 +8870,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8680,13 +8884,13 @@ "10" ], "x-ms-request-id": [ - "fa292a98-0cce-44aa-b507-4f22116fd96a" + "9ca0f05c-f319-4011-9eb1-5ca825e78631" ], "x-ms-correlation-request-id": [ - "2ea0a8a5-ff08-4124-9e1c-3e2944352951" + "26313ed9-cd34-45ee-aeaa-44e34940bdd5" ], "x-ms-arm-service-request-id": [ - "5851aee4-4b9e-4672-a02d-250ca18bb106" + "c25a3427-df18-46ff-9d58-ba8f76ec8b00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8699,13 +8903,13 @@ "11905" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075602Z:2ea0a8a5-ff08-4124-9e1c-3e2944352951" + "WESTUS:20200616T193805Z:26313ed9-cd34-45ee-aeaa-44e34940bdd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:02 GMT" + "Tue, 16 Jun 2020 19:38:05 GMT" ], "Content-Length": [ "30" @@ -8721,8 +8925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8730,7 +8934,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8744,13 +8948,13 @@ "10" ], "x-ms-request-id": [ - "36ceeeec-e582-4fc6-90b0-063933f22b89" + "e85504ba-8b84-430e-9348-e5d659e6ae8d" ], "x-ms-correlation-request-id": [ - "4b85b83c-92b6-4e73-b3a0-d30b91e09cca" + "8fb7b6cb-fb12-4686-a4f4-8021fe468c72" ], "x-ms-arm-service-request-id": [ - "5f9c990e-89ac-4c4c-864c-1cf42d03fdeb" + "cc5edaf3-9992-4de3-90e6-373c6abb811b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8763,13 +8967,13 @@ "11904" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075612Z:4b85b83c-92b6-4e73-b3a0-d30b91e09cca" + "WESTUS:20200616T193815Z:8fb7b6cb-fb12-4686-a4f4-8021fe468c72" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:12 GMT" + "Tue, 16 Jun 2020 19:38:15 GMT" ], "Content-Length": [ "30" @@ -8785,8 +8989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8794,7 +8998,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8808,13 +9012,13 @@ "10" ], "x-ms-request-id": [ - "ff5d9ca2-f65e-456e-86dc-d02eb04d5479" + "61601dbd-c4d7-4605-9e7d-df1242efe77e" ], "x-ms-correlation-request-id": [ - "f1fa5b12-7bcf-4f0b-acc3-6f21c1e5f240" + "e6af5941-1b6f-44d6-acb6-c0bb24b44a50" ], "x-ms-arm-service-request-id": [ - "1829c72a-0f70-4271-9feb-ed95165b87c8" + "164d1d54-7cbe-487f-b202-3978c2c3a512" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8827,13 +9031,13 @@ "11903" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075622Z:f1fa5b12-7bcf-4f0b-acc3-6f21c1e5f240" + "WESTUS:20200616T193825Z:e6af5941-1b6f-44d6-acb6-c0bb24b44a50" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:22 GMT" + "Tue, 16 Jun 2020 19:38:25 GMT" ], "Content-Length": [ "30" @@ -8849,8 +9053,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8858,7 +9062,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8872,13 +9076,13 @@ "10" ], "x-ms-request-id": [ - "4874c7c2-adfe-4a19-ae4f-47e140e706e4" + "8c55f98c-2cfc-4800-93b5-e8523b817d91" ], "x-ms-correlation-request-id": [ - "9a258b5d-f5f7-4df2-b6cb-f8be5731939a" + "ad000f71-6f70-46e1-8a32-994bf2784c98" ], "x-ms-arm-service-request-id": [ - "4c9cdc21-98c8-4f58-93ec-5491e715a261" + "6fa900e3-32d7-451f-b065-0b652a03aef3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8891,13 +9095,13 @@ "11902" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075632Z:9a258b5d-f5f7-4df2-b6cb-f8be5731939a" + "WESTUS:20200616T193835Z:ad000f71-6f70-46e1-8a32-994bf2784c98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:32 GMT" + "Tue, 16 Jun 2020 19:38:35 GMT" ], "Content-Length": [ "30" @@ -8913,8 +9117,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8922,7 +9126,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -8936,13 +9140,13 @@ "10" ], "x-ms-request-id": [ - "850b6036-6ec7-43da-a09c-12018bcdfe98" + "5d311e42-cc0b-409b-b98b-23930244e9a6" ], "x-ms-correlation-request-id": [ - "5fb1dc2a-4ffb-4556-a1aa-709d2d0ed614" + "75fb484a-99ef-40d0-adc0-03d07b2e84e6" ], "x-ms-arm-service-request-id": [ - "45409eca-4bd1-4dd5-9413-8b83c531d472" + "271eb565-9f32-4b99-a828-95056483768a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8955,13 +9159,13 @@ "11901" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075642Z:5fb1dc2a-4ffb-4556-a1aa-709d2d0ed614" + "WESTUS:20200616T193846Z:75fb484a-99ef-40d0-adc0-03d07b2e84e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:42 GMT" + "Tue, 16 Jun 2020 19:38:45 GMT" ], "Content-Length": [ "30" @@ -8977,8 +9181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -8986,7 +9190,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9000,13 +9204,13 @@ "10" ], "x-ms-request-id": [ - "748d4f81-4d5e-4454-bcc3-a20945d8afbe" + "87ca3b01-2c10-4336-b412-87d73dddb88c" ], "x-ms-correlation-request-id": [ - "97ba1b15-94a2-4dbf-98e7-99581094493a" + "1895d386-150a-4b56-911d-0f664b3b53ce" ], "x-ms-arm-service-request-id": [ - "63164bab-140e-4d2e-8dd4-b3ca75ce8b22" + "110facb8-abd8-4fd7-a6f1-6bdd0e54a1a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9019,13 +9223,13 @@ "11900" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075652Z:97ba1b15-94a2-4dbf-98e7-99581094493a" + "WESTUS:20200616T193856Z:1895d386-150a-4b56-911d-0f664b3b53ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:56:52 GMT" + "Tue, 16 Jun 2020 19:38:55 GMT" ], "Content-Length": [ "30" @@ -9041,8 +9245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9050,7 +9254,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9064,13 +9268,13 @@ "10" ], "x-ms-request-id": [ - "7c8bd02f-3564-48ab-a3a7-5b6a69a42df1" + "753a3d74-4eda-4ac6-a8b5-15455b4a7394" ], "x-ms-correlation-request-id": [ - "6fa22337-24a7-49d9-9adb-7aefaf246122" + "33f624e6-a4e7-43d3-858f-5dbc6132ea27" ], "x-ms-arm-service-request-id": [ - "d17accd0-eb30-48cf-99e1-bb4634221539" + "6c79ebc4-423c-465b-9e3d-b3f127fbdd97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9083,13 +9287,13 @@ "11899" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075702Z:6fa22337-24a7-49d9-9adb-7aefaf246122" + "WESTUS:20200616T193906Z:33f624e6-a4e7-43d3-858f-5dbc6132ea27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:02 GMT" + "Tue, 16 Jun 2020 19:39:05 GMT" ], "Content-Length": [ "30" @@ -9105,8 +9309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9114,7 +9318,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9128,13 +9332,13 @@ "10" ], "x-ms-request-id": [ - "a2e43c51-44c5-485d-8258-5774242800c1" + "54dc1ea8-c997-4bd0-bccc-971fb4e8c3ca" ], "x-ms-correlation-request-id": [ - "a8b77f64-4f0e-4373-beef-c68efb484ac8" + "b32aee84-40e3-4d69-8d39-2ea59cabaf21" ], "x-ms-arm-service-request-id": [ - "f44cd434-08d1-46dc-82fc-93ef76f556f6" + "b55777f2-363c-4cd1-b320-031f11d80f2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9147,13 +9351,13 @@ "11898" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075712Z:a8b77f64-4f0e-4373-beef-c68efb484ac8" + "WESTUS:20200616T193916Z:b32aee84-40e3-4d69-8d39-2ea59cabaf21" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:12 GMT" + "Tue, 16 Jun 2020 19:39:15 GMT" ], "Content-Length": [ "30" @@ -9169,8 +9373,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9178,7 +9382,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9192,13 +9396,13 @@ "10" ], "x-ms-request-id": [ - "1d47b5c0-89bb-488c-a54a-11d8b0afe9a6" + "2dd6aea7-d668-4010-b882-02d009b96ee1" ], "x-ms-correlation-request-id": [ - "fd1c98b7-54b3-4d7b-a325-cb2948dd23ee" + "ef010160-5e18-4c8d-ac11-f98147443970" ], "x-ms-arm-service-request-id": [ - "8c79a8e2-458a-4b57-8575-72fcf90f3615" + "e9c086c5-84a0-4a1e-930a-e940e0a071db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9211,13 +9415,13 @@ "11897" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075722Z:fd1c98b7-54b3-4d7b-a325-cb2948dd23ee" + "WESTUS:20200616T193926Z:ef010160-5e18-4c8d-ac11-f98147443970" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:22 GMT" + "Tue, 16 Jun 2020 19:39:25 GMT" ], "Content-Length": [ "30" @@ -9233,8 +9437,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9242,7 +9446,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9256,13 +9460,13 @@ "10" ], "x-ms-request-id": [ - "ba8e0a9d-8db1-4fb3-87b4-288a3cbcff93" + "06c96a67-f320-4b2b-bc4d-a3b1d5524006" ], "x-ms-correlation-request-id": [ - "1039c168-c517-412d-a218-87b5e1a02d19" + "d1c57b55-a449-457e-bb15-a5bd63402ba4" ], "x-ms-arm-service-request-id": [ - "07b5a106-19e4-41fc-bffc-94563449d07d" + "3eb79394-563d-469b-83a3-b9083f5c6e32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9275,13 +9479,13 @@ "11896" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075733Z:1039c168-c517-412d-a218-87b5e1a02d19" + "WESTUS:20200616T193936Z:d1c57b55-a449-457e-bb15-a5bd63402ba4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:32 GMT" + "Tue, 16 Jun 2020 19:39:35 GMT" ], "Content-Length": [ "30" @@ -9297,8 +9501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9306,7 +9510,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9320,13 +9524,13 @@ "10" ], "x-ms-request-id": [ - "c4a15f2d-74f4-40c1-afff-c843adf56f34" + "0eafbbe8-c85c-468b-9273-d83dbf9cce1d" ], "x-ms-correlation-request-id": [ - "53b4d27d-7acd-4b7b-933e-6b2c897780ff" + "26b0ecff-8191-4195-a86d-45dcdc917221" ], "x-ms-arm-service-request-id": [ - "f3f4386c-3be6-48a4-a04b-5e17fc2025ae" + "94719454-0505-48bb-936a-e9ab3e2255a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9339,13 +9543,13 @@ "11895" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075743Z:53b4d27d-7acd-4b7b-933e-6b2c897780ff" + "WESTUS:20200616T193946Z:26b0ecff-8191-4195-a86d-45dcdc917221" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:42 GMT" + "Tue, 16 Jun 2020 19:39:46 GMT" ], "Content-Length": [ "30" @@ -9361,8 +9565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9370,7 +9574,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9384,13 +9588,13 @@ "10" ], "x-ms-request-id": [ - "8f09235b-a272-4c10-95e5-f046153c5934" + "0928874d-96bb-435a-91ae-021c6b3ff6ef" ], "x-ms-correlation-request-id": [ - "cd5da741-bd49-43b5-9e24-2681aeb48092" + "86fe47a4-89e9-4169-90fe-75637aa71a9e" ], "x-ms-arm-service-request-id": [ - "d10e2e76-4864-4ab4-8f79-ffdaea9b15a7" + "276ed4c2-2f8e-4270-a9e2-c7295cdb7d11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9403,13 +9607,13 @@ "11894" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075753Z:cd5da741-bd49-43b5-9e24-2681aeb48092" + "WESTUS:20200616T193956Z:86fe47a4-89e9-4169-90fe-75637aa71a9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:57:52 GMT" + "Tue, 16 Jun 2020 19:39:56 GMT" ], "Content-Length": [ "30" @@ -9425,8 +9629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9434,7 +9638,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9448,13 +9652,13 @@ "10" ], "x-ms-request-id": [ - "2f2e267d-7df9-4be2-b762-9a4c00cc73c0" + "24294dc5-9fff-42de-a324-b4692c37a8d1" ], "x-ms-correlation-request-id": [ - "d8c61d57-efe3-4aef-b1d5-e2902d1127cf" + "ade2966e-0678-4018-bd7c-bc406f2e0def" ], "x-ms-arm-service-request-id": [ - "030bb905-bdd6-4bca-9e3c-24fcc890a345" + "3548ee19-d549-4ac0-963c-0b04a04c8c00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9467,13 +9671,13 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075803Z:d8c61d57-efe3-4aef-b1d5-e2902d1127cf" + "WESTUS:20200616T194006Z:ade2966e-0678-4018-bd7c-bc406f2e0def" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:02 GMT" + "Tue, 16 Jun 2020 19:40:06 GMT" ], "Content-Length": [ "30" @@ -9489,8 +9693,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/e47ac9b4-487c-4d88-87d2-069989a4e309?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2U0N2FjOWI0LTQ4N2MtNGQ4OC04N2QyLTA2OTk4OWE0ZTMwOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9498,7 +9702,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9508,14 +9712,17 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "498aba8c-6abb-459c-8763-ef62192d11a2" + "05352f40-9959-43a9-9594-92879cc8fdc4" ], "x-ms-correlation-request-id": [ - "a002f4d9-fac2-4b36-a8ce-73792cc1a763" + "6fa9e49d-581f-4ed7-b405-383eb2d5c2cf" ], "x-ms-arm-service-request-id": [ - "5461832c-f591-416e-8320-f54c0b01af60" + "0384ef14-91fd-4d00-a3ef-addeb42bb73b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9528,16 +9735,16 @@ "11892" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075813Z:a002f4d9-fac2-4b36-a8ce-73792cc1a763" + "WESTUS:20200616T194016Z:6fa9e49d-581f-4ed7-b405-383eb2d5c2cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:13 GMT" + "Tue, 16 Jun 2020 19:40:16 GMT" ], "Content-Length": [ - "29" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9546,79 +9753,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "16015b21-8c38-42d5-885a-d45af9e24f5f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5fb6e57d-4fd8-4bea-830c-b6d22f6a8fba" - ], - "x-ms-correlation-request-id": [ - "87e0cafc-8ffe-4beb-95b1-4a62fd826934" - ], - "x-ms-arm-service-request-id": [ - "c9ee8ba1-0787-4ec1-b436-0c50abc49c90" - ], - "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:20200615T075813Z:87e0cafc-8ffe-4beb-95b1-4a62fd826934" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:58:13 GMT" - ], - "Content-Length": [ - "259" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable not found.\",\r\n \"details\": []\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9626,7 +9766,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9636,17 +9776,17 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "24c5e20d-2d58-4e80-a11d-f3ed2978fde5" + "9d8e8744-edad-4593-80ea-38986be4ea85" ], "x-ms-correlation-request-id": [ - "7d8b1dae-242a-4da4-bbb2-e5742285f907" + "3feda24e-50e7-4b27-bced-21d4dad76d23" ], "x-ms-arm-service-request-id": [ - "7aa3a1d9-aa58-405f-967a-d937c7f679f9" + "4957e8be-757b-4b77-8e16-4266693dd8ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9656,19 +9796,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11891" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075835Z:7d8b1dae-242a-4da4-bbb2-e5742285f907" + "WESTUS:20200616T194026Z:3feda24e-50e7-4b27-bced-21d4dad76d23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:35 GMT" + "Tue, 16 Jun 2020 19:40:26 GMT" ], "Content-Length": [ - "894" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9677,26 +9817,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "0f936c37-e88a-4847-a82c-3a34a712c11c" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9706,17 +9840,17 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "f83f8fc3-2f9b-47b7-b873-5ea800c79158" + "daeae138-d78b-46bb-a0a6-b56efbee0c3e" ], "x-ms-correlation-request-id": [ - "7018ad78-57e8-42b8-8734-f76b11f8809a" + "37bde602-1ae7-4d69-996d-9686b8351935" ], "x-ms-arm-service-request-id": [ - "3c86a068-b5fe-4c13-ade9-b52a6995a1eb" + "80be2d67-b647-45df-9d5b-59d8d70c534a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9726,19 +9860,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11890" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075836Z:7018ad78-57e8-42b8-8734-f76b11f8809a" + "WESTUS:20200616T194036Z:37bde602-1ae7-4d69-996d-9686b8351935" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:35 GMT" + "Tue, 16 Jun 2020 19:40:36 GMT" ], "Content-Length": [ - "894" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9747,26 +9881,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "299aebe5-a72c-49c1-8a34-7d6caa42ee6f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9776,17 +9904,17 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\"" + "Retry-After": [ + "10" ], "x-ms-request-id": [ - "939b6668-4049-4785-878a-87783c0e9885" + "fb3b60b9-d27c-4271-8c8a-1d29e03b4918" ], "x-ms-correlation-request-id": [ - "0e021f67-9cf5-40bc-a5c7-ab841d2dc50b" + "aa87e3e8-5b72-4278-b83b-3b5c7fc47569" ], "x-ms-arm-service-request-id": [ - "8a46dac1-05a9-4e8a-ab75-3f5766c17a42" + "700018c8-a88b-455b-b12c-a48060c1ef40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9796,19 +9924,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11889" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075836Z:0e021f67-9cf5-40bc-a5c7-ab841d2dc50b" + "WESTUS:20200616T194046Z:aa87e3e8-5b72-4278-b83b-3b5c7fc47569" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:35 GMT" + "Tue, 16 Jun 2020 19:40:46 GMT" ], "Content-Length": [ - "894" + "30" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9817,12 +9945,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"760153fc-ad3e-4d70-afd8-a7933ccf6e91\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a11b6c3b-638b-4db9-ac7e-cafd0b8bc3b9?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ExMWI2YzNiLTYzOGItNGRiOS1hYzdlLWNhZmQwYjhiYzNiOT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -9830,7 +9958,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9840,17 +9968,14 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"4dd85415-2719-4217-8e05-db60ad6eab10\"" - ], "x-ms-request-id": [ - "9e18019e-b2bd-49de-9435-7ecf6b1bb8cf" + "80ded987-6215-40c9-a571-757e349f2d42" ], "x-ms-correlation-request-id": [ - "41b710ef-7269-4c2b-a93e-ec95ad227c67" + "02f72f25-1989-4a93-839b-8fe6b940ea9c" ], "x-ms-arm-service-request-id": [ - "0788527f-0337-49a2-ae0d-ce67d8cfc98d" + "0a3d0708-8ff9-4438-9528-9a5a8b6c81fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9860,19 +9985,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11888" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075847Z:41b710ef-7269-4c2b-a93e-ec95ad227c67" + "WESTUS:20200616T194056Z:02f72f25-1989-4a93-839b-8fe6b940ea9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:47 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "865" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9881,17 +10006,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3098c087-739e-4720-8f29-baf98df71bc9" + "f4a4ce61-398a-47cb-b9eb-1317117fd5ec" ], "Accept-Language": [ "en-US" @@ -9900,7 +10025,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9910,17 +10035,14 @@ "Pragma": [ "no-cache" ], - "ETag": [ - "W/\"4dd85415-2719-4217-8e05-db60ad6eab10\"" - ], "x-ms-request-id": [ - "e051b274-3eb2-4ba9-bb40-0d7c6dac04d1" + "dcba9f49-a9a4-4c36-8941-d322e5e9d1ef" ], "x-ms-correlation-request-id": [ - "018ffc7d-0918-4861-b34f-bc07da12485e" + "c8c6069e-9035-4e67-871f-0a0e8ffa58df" ], "x-ms-arm-service-request-id": [ - "10e13682-d933-4371-a48f-a22a465f511c" + "c5e59fd9-101e-4b56-a6ab-f4b257e8fbe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9933,16 +10055,16 @@ "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075847Z:018ffc7d-0918-4861-b34f-bc07da12485e" + "WESTUS:20200616T194057Z:c8c6069e-9035-4e67-871f-0a0e8ffa58df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:46 GMT" + "Tue, 16 Jun 2020 19:40:56 GMT" ], "Content-Length": [ - "865" + "258" ], "Content-Type": [ "application/json; charset=utf-8" @@ -9951,32 +10073,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"4dd85415-2719-4217-8e05-db60ad6eab10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable not found.\",\r\n \"details\": []\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\"\r\n}", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "072f1528-9ffe-4d3f-8b40-cf790bce5797" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "505" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -9986,20 +10096,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"65fc0ee0-dc18-4d65-823a-04c72f98540d\"" ], "x-ms-request-id": [ - "64aa737b-606f-47c8-b87e-d74f3c0d6ed0" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01" + "f1ac3c03-60a1-4930-89a9-e5d385814d42" ], "x-ms-correlation-request-id": [ - "9b2d40a3-0774-414e-b289-fa2dd4d11781" + "146d3ad6-a4bb-4501-a5b8-ebcffa83eda3" ], "x-ms-arm-service-request-id": [ - "cb248867-25b3-476d-9111-f5a632385f3f" + "b6b285ff-a223-4acf-ab8f-80183261b01f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10008,20 +10115,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075815Z:9b2d40a3-0774-414e-b289-fa2dd4d11781" + "WESTUS:20200616T194118Z:146d3ad6-a4bb-4501-a5b8-ebcffa83eda3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:15 GMT" + "Tue, 16 Jun 2020 19:41:17 GMT" ], "Content-Length": [ - "893" + "892" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10030,17 +10137,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"9e757076-143a-454c-976f-247fe60745a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"65fc0ee0-dc18-4d65-823a-04c72f98540d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\"\r\n}", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5b2f5e2-d946-4f1b-a4c4-dd57d37649a6" + "1082c588-f903-4639-badf-1b2d37eec583" ], "Accept-Language": [ "en-US" @@ -10049,13 +10156,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "641" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10065,20 +10166,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"65fc0ee0-dc18-4d65-823a-04c72f98540d\"" ], "x-ms-request-id": [ - "afdfed9e-c624-476e-bcd9-4ab18642ea71" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/afdfed9e-c624-476e-bcd9-4ab18642ea71?api-version=2020-05-01" + "11604438-1326-48db-a20e-07f81a9d8ec6" ], "x-ms-correlation-request-id": [ - "e1705b84-5793-4b8f-8781-5f82178a50f8" + "fc67e15c-ea89-44d9-8c54-6c221c99f4ed" ], "x-ms-arm-service-request-id": [ - "430b3c3c-f4f6-4a85-95a8-3f381470f8d1" + "793b8981-f113-4ff4-9f4d-a705f5ee87ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10087,20 +10185,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075836Z:e1705b84-5793-4b8f-8781-5f82178a50f8" + "WESTUS:20200616T194118Z:fc67e15c-ea89-44d9-8c54-6c221c99f4ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:35 GMT" + "Tue, 16 Jun 2020 19:41:18 GMT" ], "Content-Length": [ - "864" + "892" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10109,20 +10207,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"1693c9ca-2ec3-4932-a7ca-a566d0b50b20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"65fc0ee0-dc18-4d65-823a-04c72f98540d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY0YWE3MzdiLTYwNmYtNDdjOC1iODdlLWQ3NGYzYzBkNmVkMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "9b4d45db-f103-4a49-bff0-2281daa46602" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10132,17 +10236,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "ETag": [ + "W/\"65fc0ee0-dc18-4d65-823a-04c72f98540d\"" ], "x-ms-request-id": [ - "3f46c15e-3455-474a-901a-899c49952056" + "3fee25e9-26db-4810-8534-525f6e26c324" ], "x-ms-correlation-request-id": [ - "0cd44805-535b-47be-9afc-e3a29eb53df0" + "a71c0f0f-96c6-40df-ad61-78d8193b2a4d" ], "x-ms-arm-service-request-id": [ - "0b442d4c-155a-4d4f-9489-315959df31a7" + "e2326975-e863-41e3-bef6-f923bc3b88b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10152,19 +10256,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075825Z:0cd44805-535b-47be-9afc-e3a29eb53df0" + "WESTUS:20200616T194119Z:a71c0f0f-96c6-40df-ad61-78d8193b2a4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:25 GMT" + "Tue, 16 Jun 2020 19:41:19 GMT" ], "Content-Length": [ - "30" + "892" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10173,12 +10277,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"65fc0ee0-dc18-4d65-823a-04c72f98540d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/64aa737b-606f-47c8-b87e-d74f3c0d6ed0?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzY0YWE3MzdiLTYwNmYtNDdjOC1iODdlLWQ3NGYzYzBkNmVkMD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10186,7 +10290,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10196,14 +10300,17 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"efa39cec-7816-41dd-ad81-1a256b5904cd\"" + ], "x-ms-request-id": [ - "b77d4828-6aae-44c6-8de0-979c4cc47eaa" + "c22a488d-0df6-477d-86a0-d420fae4930a" ], "x-ms-correlation-request-id": [ - "4ccff4f4-7dac-4008-abd3-c4af37c23e06" + "7be69fa8-6471-4b95-b7cb-a2b7cb0953a6" ], "x-ms-arm-service-request-id": [ - "9850673a-f8fa-440e-a5e9-c18c045884e7" + "09a66ad8-51d9-4588-b6af-0f1e026d64f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10216,16 +10323,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075835Z:4ccff4f4-7dac-4008-abd3-c4af37c23e06" + "WESTUS:20200616T194130Z:7be69fa8-6471-4b95-b7cb-a2b7cb0953a6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:35 GMT" + "Tue, 16 Jun 2020 19:41:30 GMT" ], "Content-Length": [ - "29" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10234,20 +10341,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"efa39cec-7816-41dd-ad81-1a256b5904cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/afdfed9e-c624-476e-bcd9-4ab18642ea71?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2FmZGZlZDllLWM2MjQtNDc2ZS1iY2Q5LTRhYjE4NjQyZWE3MT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "82937214-f9b5-40e2-bfc4-a54c49351eae" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10257,14 +10370,17 @@ "Pragma": [ "no-cache" ], + "ETag": [ + "W/\"efa39cec-7816-41dd-ad81-1a256b5904cd\"" + ], "x-ms-request-id": [ - "9d569540-ae82-4bb3-8d0e-07e910435769" + "d4e81361-3dcf-43a7-a76d-ccbba2986ee3" ], "x-ms-correlation-request-id": [ - "31e429b8-25df-4164-a53f-fb4c56ed4f52" + "009e6888-4985-44e0-b97a-d30610325e75" ], "x-ms-arm-service-request-id": [ - "48f3db70-b5bb-4a3d-8106-f59ef4498eee" + "0cd11e16-4920-4ede-b5be-fc0d2e06d30b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10274,19 +10390,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075847Z:31e429b8-25df-4164-a53f-fb4c56ed4f52" + "WESTUS:20200616T194130Z:009e6888-4985-44e0-b97a-d30610325e75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:47 GMT" + "Tue, 16 Jun 2020 19:41:29 GMT" ], "Content-Length": [ - "29" + "863" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10295,17 +10411,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"efa39cec-7816-41dd-ad81-1a256b5904cd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830/hubRouteTables/customRouteTable?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwL2h1YlJvdXRlVGFibGVzL2N1c3RvbVJvdXRlVGFibGU/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb0a1f3e-1658-4105-a83a-d43bff534c7a" + "9ac55707-4fd8-4712-b31a-9e263c7ddf8a" ], "Accept-Language": [ "en-US" @@ -10314,74 +10430,13 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "1769941d-62fd-4cc2-bb15-cc4d23f5617a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" - ], - "x-ms-correlation-request-id": [ - "a6845183-48f7-4be6-9953-e37bc7041c14" - ], - "x-ms-arm-service-request-id": [ - "198be7f6-fbfa-4ad8-9bff-7bf25d126605" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200615T075847Z:a6845183-48f7-4be6-9953-e37bc7041c14" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:58:47 GMT" - ], - "Expires": [ - "-1" + "Content-Type": [ + "application/json; charset=utf-8" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "504" ] }, "ResponseHeaders": { @@ -10395,13 +10450,16 @@ "10" ], "x-ms-request-id": [ - "dd5e0bd1-6444-4be4-94dc-22303448f8a6" + "5ad8d8cc-d3e4-4db7-a725-7d81530ed9d1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/5ad8d8cc-d3e4-4db7-a725-7d81530ed9d1?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "e65f9c6c-2e8c-483e-a6cb-f0801ec92ed6" + "1f5e4e8d-e17b-4427-b387-997a1b1f4db1" ], "x-ms-arm-service-request-id": [ - "b0cdf6e7-d319-4df7-9b71-56d2eeba7f2c" + "196140c2-0643-4638-9303-9dd0af043894" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10410,20 +10468,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075857Z:e65f9c6c-2e8c-483e-a6cb-f0801ec92ed6" + "WESTUS:20200616T194058Z:1f5e4e8d-e17b-4427-b387-997a1b1f4db1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:58:57 GMT" + "Tue, 16 Jun 2020 19:40:57 GMT" ], "Content-Length": [ - "30" + "891" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10432,20 +10490,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"611f993e-28b8-4371-b3eb-d05fb2958ac1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"private-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"10.30.0.0/16\",\r\n \"10.40.0.0/16\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ]\r\n },\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "545c8f67-d317-41e8-8fb2-78a49767d5d4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "639" ] }, "ResponseHeaders": { @@ -10459,13 +10529,16 @@ "10" ], "x-ms-request-id": [ - "98fa1d37-c2ae-444b-b8bc-67decb68fd75" + "63544c09-6f1b-44ac-aae6-3348fea78fc7" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/63544c09-6f1b-44ac-aae6-3348fea78fc7?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "e714f474-2753-4312-8931-f69390c96ee2" + "b88d7845-3922-4eb9-a860-2efa1f9a0f4e" ], "x-ms-arm-service-request-id": [ - "5247e90c-c8f0-43cc-88f4-7fe97fdcaddf" + "8f5b5ff8-0c5f-418a-ba9d-41c48157e89b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10474,20 +10547,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075908Z:e714f474-2753-4312-8931-f69390c96ee2" + "WESTUS:20200616T194119Z:b88d7845-3922-4eb9-a860-2efa1f9a0f4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:59:07 GMT" + "Tue, 16 Jun 2020 19:41:19 GMT" ], "Content-Length": [ - "30" + "862" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10496,12 +10569,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"customRouteTable\",\r\n \"id\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable\",\r\n \"etag\": \"W/\\\"25852027-56bf-44db-8eec-93254195881f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"routes\": [\r\n {\r\n \"name\": \"internet-traffic\",\r\n \"destinationType\": \"CIDR\",\r\n \"destinations\": [\r\n \"0.0.0.0/0\"\r\n ],\r\n \"nextHopType\": \"ResourceId\",\r\n \"nextHop\": \"/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub\"\r\n }\r\n ],\r\n \"labels\": [\r\n \"customLabel\"\r\n ],\r\n \"associatedConnections\": [],\r\n \"propagatingConnections\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualHubs/hubRouteTables\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/5ad8d8cc-d3e4-4db7-a725-7d81530ed9d1?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVhZDhkOGNjLWQzZTQtNGRiNy1hNzI1LTdkODE1MzBlZDlkMT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10509,7 +10582,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10523,13 +10596,13 @@ "10" ], "x-ms-request-id": [ - "104c37f4-dbb7-4250-b92d-a4d7c27bfd28" + "7ef62a93-c91a-4f6b-8340-db047392bd46" ], "x-ms-correlation-request-id": [ - "df79db3c-13a5-4922-b224-6c0e642ff47d" + "b8609cf4-361d-425a-bde3-a936ae8a4304" ], "x-ms-arm-service-request-id": [ - "b9a4290c-3ce6-429a-927b-385f3ce40d90" + "fe92b880-6433-478c-b641-99ffbc800446" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10539,16 +10612,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T075918Z:df79db3c-13a5-4922-b224-6c0e642ff47d" + "WESTUS:20200616T194108Z:b8609cf4-361d-425a-bde3-a936ae8a4304" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 07:59:17 GMT" + "Tue, 16 Jun 2020 19:41:07 GMT" ], "Content-Length": [ "30" @@ -10564,8 +10637,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/5ad8d8cc-d3e4-4db7-a725-7d81530ed9d1?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVhZDhkOGNjLWQzZTQtNGRiNy1hNzI1LTdkODE1MzBlZDlkMT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -10573,7 +10646,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -10583,538 +10656,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "cc9394a6-7164-47e9-a445-06be45b31b1d" + "523956cb-c19e-4493-b3bb-9b88f0365761" ], "x-ms-correlation-request-id": [ - "69e8f5e8-475c-4577-9b6a-8c945a9af9a5" + "b1958d3c-bb9c-429f-bd5d-f560c2f0714d" ], "x-ms-arm-service-request-id": [ - "ec57f691-9b6f-4b5c-a337-f14c2185c904" - ], - "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:20200615T075928Z:69e8f5e8-475c-4577-9b6a-8c945a9af9a5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:27 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5178de58-7678-49de-a242-82678ee79b43" - ], - "x-ms-correlation-request-id": [ - "8035927c-b1dd-45eb-a243-5c29d82ca859" - ], - "x-ms-arm-service-request-id": [ - "14efaa2a-9e28-4bca-98e1-3b0f1d37e95e" - ], - "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:20200615T075938Z:8035927c-b1dd-45eb-a243-5c29d82ca859" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:37 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "3d1159e2-a3ef-4c57-9a99-fc0734df47c0" - ], - "x-ms-correlation-request-id": [ - "ed6c01b8-7788-40e5-8b7b-12851c3b7b62" - ], - "x-ms-arm-service-request-id": [ - "ccc468fb-6ebb-4e2b-968b-3d59c435404f" - ], - "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:20200615T075948Z:ed6c01b8-7788-40e5-8b7b-12851c3b7b62" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:47 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ff0f8999-a137-418b-a930-c4f2264572af" - ], - "x-ms-correlation-request-id": [ - "3298008a-9ca9-4c58-94ce-d204e7b489dd" - ], - "x-ms-arm-service-request-id": [ - "96c2b424-9873-43cb-824b-336446908685" - ], - "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:20200615T075958Z:3298008a-9ca9-4c58-94ce-d204e7b489dd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:57 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzE3Njk5NDFkLTYyZmQtNGNjMi1iYjE1LWNjNGQyM2Y1NjE3YT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" - ], - "x-ms-request-id": [ - "1769941d-62fd-4cc2-bb15-cc4d23f5617a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/1769941d-62fd-4cc2-bb15-cc4d23f5617a?api-version=2020-05-01" - ], - "x-ms-correlation-request-id": [ - "a6845183-48f7-4be6-9953-e37bc7041c14" - ], - "x-ms-arm-service-request-id": [ - "198be7f6-fbfa-4ad8-9bff-7bf25d126605" - ], - "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:20200615T075958Z:fbc104bc-fa28-4df0-9693-0716a35e9337" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:57 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvYXp1cmVGaXJld2FsbHMvYXpGd0luVmlydHVhbEh1Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "afcf46c7-dd6d-436a-89b4-3b3d031b98a4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "4569f553-ba12-409a-b1ed-e6dc4d9f14bd" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" - ], - "x-ms-correlation-request-id": [ - "7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-arm-service-request-id": [ - "030bdb42-b580-4d79-b0b4-276e2a9c8d8e" - ], - "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:20200615T075959Z:7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 07:59:58 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "67de43ba-6c11-4a5b-ab1c-000a5f64626e" - ], - "x-ms-correlation-request-id": [ - "ed79caba-2f1a-4f3d-a4a0-8837946a40f6" - ], - "x-ms-arm-service-request-id": [ - "08540bd2-cf2c-4046-a439-89b888aee689" - ], - "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:20200615T080009Z:ed79caba-2f1a-4f3d-a4a0-8837946a40f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 08:00:08 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "13e4ab4a-9df7-4934-82d0-142842e40475" - ], - "x-ms-correlation-request-id": [ - "6ed8a18c-b6ca-42b2-92d2-078fde3c8fdf" - ], - "x-ms-arm-service-request-id": [ - "356d4237-6db8-4a99-a192-a2b6ca64f482" - ], - "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:20200615T080019Z:6ed8a18c-b6ca-42b2-92d2-078fde3c8fdf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 08:00:18 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c3d57de7-4026-49c7-a6d9-97342aa6e582" - ], - "x-ms-correlation-request-id": [ - "0c77df15-ffda-4a87-ad88-b1ee2b81ebbd" - ], - "x-ms-arm-service-request-id": [ - "f637dded-6b2f-47b2-935c-fdbd016ad2f3" + "188e8686-20c4-4fa3-a72c-6687ef85e82d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11127,208 +10676,16 @@ "11997" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080029Z:0c77df15-ffda-4a87-ad88-b1ee2b81ebbd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 08:00:28 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "d23ac3cf-d167-4a20-a82b-1de73f5b9d0e" - ], - "x-ms-correlation-request-id": [ - "da055802-250f-4347-ab1e-244b6a7005dc" - ], - "x-ms-arm-service-request-id": [ - "a0ed4db3-8990-491c-be42-62e002b84edf" - ], - "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:20200615T080039Z:da055802-250f-4347-ab1e-244b6a7005dc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 08:00:38 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "e63317f1-df07-40de-a5d4-b67674589d6f" - ], - "x-ms-correlation-request-id": [ - "d662b25c-92c8-4986-8fb7-66a6a156af94" - ], - "x-ms-arm-service-request-id": [ - "00e46291-aacc-4d47-bd34-30915d4842d7" - ], - "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:20200615T080049Z:d662b25c-92c8-4986-8fb7-66a6a156af94" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 15 Jun 2020 08:00:48 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "362a9028-1643-4732-ab7a-30bfdc3d10f2" - ], - "x-ms-correlation-request-id": [ - "b918bcba-1faf-4247-aa30-c311721fb926" - ], - "x-ms-arm-service-request-id": [ - "73954a1f-0f20-42b7-91ff-1c25e0ebf238" - ], - "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:20200615T080059Z:b918bcba-1faf-4247-aa30-c311721fb926" + "WESTUS:20200616T194118Z:b1958d3c-bb9c-429f-bd5d-f560c2f0714d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:00:58 GMT" + "Tue, 16 Jun 2020 19:41:17 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11337,12 +10694,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/63544c09-6f1b-44ac-aae6-3348fea78fc7?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYzNTQ0YzA5LTZmMWItNDRhYy1hYWU2LTMzNDhmZWE3OGZjNz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11350,7 +10707,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11360,17 +10717,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "1fb88513-df64-4e00-8f2b-87af8ef990ee" + "c48f8028-23cd-4914-9bd3-bb929c5616b4" ], "x-ms-correlation-request-id": [ - "77352781-b3c1-4e3d-868a-b94dd97b1334" + "5d20dcb4-3e9f-4d27-93f1-0d380562ce25" ], "x-ms-arm-service-request-id": [ - "7558181a-2c66-4da1-9eaa-8c24d1acbe48" + "55ba4bbe-cab5-41e1-a6e8-06b0908c97d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11380,19 +10734,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080109Z:77352781-b3c1-4e3d-868a-b94dd97b1334" + "WESTUS:20200616T194130Z:5d20dcb4-3e9f-4d27-93f1-0d380562ce25" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:09 GMT" + "Tue, 16 Jun 2020 19:41:30 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11401,20 +10755,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124/hubRouteTables/customRouteTable?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQvaHViUm91dGVUYWJsZXMvY3VzdG9tUm91dGVUYWJsZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3d5ecf83-61b6-475e-833e-ba2860bcfa7f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11424,17 +10784,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01" + ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "43bf3e70-a77a-4337-aa0c-05c666a52af1" + "a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "1055c8ff-3987-4472-9cef-7b9f5b30208a" + "e8d58dc4-1249-4e14-b672-5ded901e4cef" ], "x-ms-arm-service-request-id": [ - "3fb34ca4-e643-4437-8ef1-3b2a3cd2b5d9" + "1f712097-f2c0-448b-98d4-d4a2176d65ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11443,34 +10809,31 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080119Z:1055c8ff-3987-4472-9cef-7b9f5b30208a" + "WESTUS:20200616T194131Z:e8d58dc4-1249-4e14-b672-5ded901e4cef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:19 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 16 Jun 2020 19:41:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2EwY2E4YjQ1LTk1YzUtNDUwNS1hZmQ5LWY2ZmY5YjZmZTU3ZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11478,7 +10841,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11488,17 +10851,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" - ], "x-ms-request-id": [ - "aa41d028-68e6-4311-9dff-6aacd5d9e16f" + "af2a7173-93d4-4087-9739-5ddfefbb44ca" ], "x-ms-correlation-request-id": [ - "77b9ebc3-d84b-42cf-ba02-b33cb3181392" + "cbc68e12-dcbb-47c3-b9e5-3c2e1f124c27" ], "x-ms-arm-service-request-id": [ - "1b22d656-11c8-4c27-b344-fef5ce43d8a7" + "8161db36-69ad-4521-859b-d20461fb9179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11508,19 +10868,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080129Z:77b9ebc3-d84b-42cf-ba02-b33cb3181392" + "WESTUS:20200616T194141Z:cbc68e12-dcbb-47c3-b9e5-3c2e1f124c27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:29 GMT" + "Tue, 16 Jun 2020 19:41:41 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11529,12 +10889,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2EwY2E4YjQ1LTk1YzUtNDUwNS1hZmQ5LWY2ZmY5YjZmZTU3ZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11542,7 +10902,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11552,17 +10912,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "10" + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01" ], "x-ms-request-id": [ - "0af98436-bc1c-4d6a-b62a-ad6d30ba2455" + "a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/a0ca8b45-95c5-4505-afd9-f6ff9b6fe57d?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "4865ebe3-6743-4626-84bd-33404ee8c8df" + "e8d58dc4-1249-4e14-b672-5ded901e4cef" ], "x-ms-arm-service-request-id": [ - "ea0e660a-05b5-4aad-bbe3-8ac2b0aa2963" + "1f712097-f2c0-448b-98d4-d4a2176d65ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11572,19 +10935,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11998" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080139Z:4865ebe3-6743-4626-84bd-33404ee8c8df" + "WESTUS:20200616T194141Z:26fb552f-87dc-426d-975d-e9fd9f8daf40" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:39 GMT" - ], - "Content-Length": [ - "30" + "Tue, 16 Jun 2020 19:41:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11593,20 +10953,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/azureFirewalls/azFwInVirtualHub?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9henVyZUZpcmV3YWxscy9hekZ3SW5WaXJ0dWFsSHViP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "891b91b2-9c22-4f5f-8924-eacf70442ac2" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11616,17 +10982,26 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01" + ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "96f03ba4-6e73-4270-8456-7e0cee9b115b" + "fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "359c9f1b-7641-4e5e-8dd9-5fa5c7ecaa9a" + "532051dc-30e6-4992-b5f8-3b9c21b711bd" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "1519795f-c11e-45b4-a4a5-28084643d1f1" + "f862a8b1-88ec-4d1d-b468-152048123f32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11635,34 +11010,31 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080149Z:359c9f1b-7641-4e5e-8dd9-5fa5c7ecaa9a" + "WESTUS:20200616T194142Z:532051dc-30e6-4992-b5f8-3b9c21b711bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:49 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 16 Jun 2020 19:41:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11670,7 +11042,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11684,13 +11056,13 @@ "10" ], "x-ms-request-id": [ - "37886643-dbc6-4da9-8fd5-6ef7057d4579" + "44ec7e59-0bde-4e14-ab5f-4234b2af74ee" ], "x-ms-correlation-request-id": [ - "80800294-d34e-4db4-b086-314e81920c98" + "c272105c-4bd7-4177-988c-735ccab27471" ], "x-ms-arm-service-request-id": [ - "64483225-4060-408d-a8cd-ad7b75ffcebb" + "0fc20a9d-d276-4de5-a22c-b88d9c747ef6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11700,16 +11072,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11888" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080159Z:80800294-d34e-4db4-b086-314e81920c98" + "WESTUS:20200616T194152Z:c272105c-4bd7-4177-988c-735ccab27471" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:01:59 GMT" + "Tue, 16 Jun 2020 19:41:52 GMT" ], "Content-Length": [ "30" @@ -11725,8 +11097,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11734,7 +11106,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11748,13 +11120,13 @@ "10" ], "x-ms-request-id": [ - "1501ba10-6b12-42c3-8f4c-f02a8013fa84" + "d34a0465-5762-4866-a8a7-64b0dd9406ca" ], "x-ms-correlation-request-id": [ - "b9152ae2-f05a-44ab-9457-3795b069be7a" + "0d3bc915-b033-41d2-bc8a-38d03a81f559" ], "x-ms-arm-service-request-id": [ - "04a67928-4a19-42dc-802d-ab9ab3f0086a" + "30024616-75df-4423-954b-bde4b6e453b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11764,16 +11136,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11887" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080210Z:b9152ae2-f05a-44ab-9457-3795b069be7a" + "WESTUS:20200616T194202Z:0d3bc915-b033-41d2-bc8a-38d03a81f559" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:02:09 GMT" + "Tue, 16 Jun 2020 19:42:02 GMT" ], "Content-Length": [ "30" @@ -11789,8 +11161,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11798,7 +11170,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11812,13 +11184,13 @@ "10" ], "x-ms-request-id": [ - "1eb79f04-b64b-4306-b33f-4ed0f33fee31" + "d2806795-6af3-4aea-b0fa-c682bf10ea4f" ], "x-ms-correlation-request-id": [ - "8eb776ba-929d-4327-9219-b92641e144b9" + "f48e7f6b-8f6d-4933-a7fb-e1b180282357" ], "x-ms-arm-service-request-id": [ - "f6176e09-94cb-4c91-9f20-39924ccc6826" + "c76b9361-2c2a-44e9-a81e-47f554d5a299" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11828,16 +11200,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11886" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080220Z:8eb776ba-929d-4327-9219-b92641e144b9" + "WESTUS:20200616T194212Z:f48e7f6b-8f6d-4933-a7fb-e1b180282357" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:02:19 GMT" + "Tue, 16 Jun 2020 19:42:12 GMT" ], "Content-Length": [ "30" @@ -11853,8 +11225,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11862,7 +11234,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11876,13 +11248,13 @@ "10" ], "x-ms-request-id": [ - "216fecca-5519-46e6-848a-c6c753edc5ca" + "dd09e560-510f-4ee4-814c-e2823bda56f4" ], "x-ms-correlation-request-id": [ - "7cd4344f-a1c4-46f5-be03-264d2e8d0b98" + "71e91c95-3e6f-436a-b558-d1606bf45575" ], "x-ms-arm-service-request-id": [ - "ffc78ecb-e008-404c-929e-2ac228d9f754" + "101ca0be-f7cf-4a8e-b909-8fbe4cbbc8c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11892,16 +11264,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11885" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080230Z:7cd4344f-a1c4-46f5-be03-264d2e8d0b98" + "WESTUS:20200616T194222Z:71e91c95-3e6f-436a-b558-d1606bf45575" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:02:29 GMT" + "Tue, 16 Jun 2020 19:42:22 GMT" ], "Content-Length": [ "30" @@ -11917,8 +11289,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11926,7 +11298,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -11940,13 +11312,13 @@ "10" ], "x-ms-request-id": [ - "5fdf8752-1701-4be2-887a-e711e0593f1b" + "795d4b1b-6bd8-4cc1-9015-d7ba1f54d0f1" ], "x-ms-correlation-request-id": [ - "2299740c-7530-40c4-9463-a626c64d1c26" + "e820cf52-4c31-4376-8fba-6063bcf31434" ], "x-ms-arm-service-request-id": [ - "049f085f-a5c9-4586-81ce-f14008770a7a" + "769befd7-4810-452e-9a72-3b4506061b27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11956,16 +11328,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11884" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080240Z:2299740c-7530-40c4-9463-a626c64d1c26" + "WESTUS:20200616T194232Z:e820cf52-4c31-4376-8fba-6063bcf31434" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:02:39 GMT" + "Tue, 16 Jun 2020 19:42:32 GMT" ], "Content-Length": [ "30" @@ -11981,8 +11353,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -11990,7 +11362,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12004,13 +11376,13 @@ "10" ], "x-ms-request-id": [ - "b95d50ba-d2e1-4fae-bb7e-58d3697d00d1" + "6eb4c5d6-4d2b-467c-b380-7a3639047c18" ], "x-ms-correlation-request-id": [ - "c3dfa6d3-5f78-4fcc-8afe-f33dfd4e6f5d" + "47a3a0f8-d0f9-4b9c-8a95-7bc0b8be932e" ], "x-ms-arm-service-request-id": [ - "bbb1d66c-945b-4b93-8b0e-1e992ab695ba" + "2e3fde63-d8ea-4c82-97aa-26f040472236" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12020,16 +11392,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11883" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080250Z:c3dfa6d3-5f78-4fcc-8afe-f33dfd4e6f5d" + "WESTUS:20200616T194242Z:47a3a0f8-d0f9-4b9c-8a95-7bc0b8be932e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:02:49 GMT" + "Tue, 16 Jun 2020 19:42:42 GMT" ], "Content-Length": [ "30" @@ -12045,8 +11417,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12054,7 +11426,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12068,13 +11440,13 @@ "10" ], "x-ms-request-id": [ - "e3b7bed5-24d5-4303-a963-05bd4bb8d799" + "81da8633-e416-4a24-8dfa-e7adc415513e" ], "x-ms-correlation-request-id": [ - "2288ff1e-3a5b-450b-968a-a40b4929b132" + "5f5673fd-af75-4345-9fae-69efbae9f165" ], "x-ms-arm-service-request-id": [ - "9e5da42a-5a02-4500-8f19-5db7bf6eb387" + "e69226b1-b14e-4b4e-a34d-74a403f4c5da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12084,16 +11456,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11882" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080300Z:2288ff1e-3a5b-450b-968a-a40b4929b132" + "WESTUS:20200616T194252Z:5f5673fd-af75-4345-9fae-69efbae9f165" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:00 GMT" + "Tue, 16 Jun 2020 19:42:52 GMT" ], "Content-Length": [ "30" @@ -12109,8 +11481,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12118,7 +11490,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12132,13 +11504,13 @@ "10" ], "x-ms-request-id": [ - "62dbd69a-da69-4503-9a08-85670c83e951" + "a0f00f41-da7c-43a3-b3da-413f5afc9e80" ], "x-ms-correlation-request-id": [ - "a5d6a133-8a65-489c-a3ca-5826e47fa785" + "b8ed746b-975c-410f-a213-f3b43d83e252" ], "x-ms-arm-service-request-id": [ - "cf916523-1b8d-421d-b4f2-d7f33918b388" + "58514fc0-96d9-437b-908c-413b5e861201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12148,16 +11520,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11881" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080310Z:a5d6a133-8a65-489c-a3ca-5826e47fa785" + "WESTUS:20200616T194302Z:b8ed746b-975c-410f-a213-f3b43d83e252" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:10 GMT" + "Tue, 16 Jun 2020 19:43:02 GMT" ], "Content-Length": [ "30" @@ -12173,8 +11545,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12182,7 +11554,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12196,13 +11568,13 @@ "10" ], "x-ms-request-id": [ - "0636c50c-580d-48f7-8acc-50450df66e09" + "b3ee923d-fc35-4b85-b5f3-9c0ef4421cd2" ], "x-ms-correlation-request-id": [ - "0ca9d1ca-bcdd-4720-b9c8-ccab7de2c01a" + "277e6efe-010f-4445-9f1e-977379a2fb1d" ], "x-ms-arm-service-request-id": [ - "3bfab2d5-1f56-4834-84b5-c1bb4d95489c" + "6aaca533-52ab-4a11-aabc-ecc28a119cbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12212,16 +11584,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11880" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080320Z:0ca9d1ca-bcdd-4720-b9c8-ccab7de2c01a" + "WESTUS:20200616T194313Z:277e6efe-010f-4445-9f1e-977379a2fb1d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:20 GMT" + "Tue, 16 Jun 2020 19:43:12 GMT" ], "Content-Length": [ "30" @@ -12237,8 +11609,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12246,7 +11618,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12260,13 +11632,13 @@ "10" ], "x-ms-request-id": [ - "99b7b97f-5501-40f8-95c1-4cf63eb2f90f" + "8de3481d-cc62-4cc0-83df-000e37e8abf7" ], "x-ms-correlation-request-id": [ - "f90d9823-228d-49d7-a99d-894476a887b6" + "a12d974b-f415-41bd-a8f6-75e497bd7bb2" ], "x-ms-arm-service-request-id": [ - "129b6028-61f8-40bd-b390-2465f76cbb7b" + "47ad6102-1b3e-4b62-acde-9f134510ee3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12276,16 +11648,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11879" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080330Z:f90d9823-228d-49d7-a99d-894476a887b6" + "WESTUS:20200616T194323Z:a12d974b-f415-41bd-a8f6-75e497bd7bb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:30 GMT" + "Tue, 16 Jun 2020 19:43:22 GMT" ], "Content-Length": [ "30" @@ -12301,8 +11673,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12310,7 +11682,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12324,13 +11696,13 @@ "10" ], "x-ms-request-id": [ - "992d2bf2-e138-450e-98fc-d61e0d7bf67f" + "f2d30619-4ce7-4586-bc2a-f3ae14b81031" ], "x-ms-correlation-request-id": [ - "caeed8ad-6ad6-4cd4-bc9e-edaabd992350" + "11076303-3f63-4440-b9b6-c3447930dc69" ], "x-ms-arm-service-request-id": [ - "7cab0bbd-f1f9-458a-b7e9-1364c9ca9c30" + "fe238e58-e4ab-40b1-8646-8fb2a16fb488" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12340,16 +11712,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11878" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080340Z:caeed8ad-6ad6-4cd4-bc9e-edaabd992350" + "WESTUS:20200616T194333Z:11076303-3f63-4440-b9b6-c3447930dc69" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:40 GMT" + "Tue, 16 Jun 2020 19:43:33 GMT" ], "Content-Length": [ "30" @@ -12365,8 +11737,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12374,7 +11746,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12388,13 +11760,13 @@ "10" ], "x-ms-request-id": [ - "0e5c31bd-b876-41b0-a37b-77e4dc86c75c" + "4d5aa592-0716-44c4-99ba-46a83e0e9424" ], "x-ms-correlation-request-id": [ - "b50a9202-35b5-4c4b-9268-7cae3ec91ac4" + "613efb15-69c2-4435-8bf0-d3daf55294e6" ], "x-ms-arm-service-request-id": [ - "fb35eb7e-5c42-42ac-baf0-0fe4a2255ad4" + "8ef476fe-000d-493f-941e-cee497bd07e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12404,16 +11776,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11877" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080350Z:b50a9202-35b5-4c4b-9268-7cae3ec91ac4" + "WESTUS:20200616T194343Z:613efb15-69c2-4435-8bf0-d3daf55294e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:03:50 GMT" + "Tue, 16 Jun 2020 19:43:43 GMT" ], "Content-Length": [ "30" @@ -12429,8 +11801,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12438,7 +11810,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12452,13 +11824,13 @@ "10" ], "x-ms-request-id": [ - "5085de19-7788-41b8-8ee0-de61bf0917a2" + "157c9a00-54af-4532-830b-e56a0244b7e9" ], "x-ms-correlation-request-id": [ - "048f2ee6-b497-4576-a9c8-5b282af70380" + "f4f9fc52-212b-47ff-ad42-fc89e64716ad" ], "x-ms-arm-service-request-id": [ - "4cfee812-a455-4a6c-9250-753683b411bb" + "6d9a9ca5-0f66-40a7-9c15-906da03054fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12468,16 +11840,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11876" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080400Z:048f2ee6-b497-4576-a9c8-5b282af70380" + "WESTUS:20200616T194353Z:f4f9fc52-212b-47ff-ad42-fc89e64716ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:00 GMT" + "Tue, 16 Jun 2020 19:43:53 GMT" ], "Content-Length": [ "30" @@ -12493,8 +11865,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12502,7 +11874,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12516,13 +11888,13 @@ "10" ], "x-ms-request-id": [ - "cbd10893-5da6-4092-a2f6-be879483584d" + "e7432060-da38-4806-8b3a-a6a7b970b064" ], "x-ms-correlation-request-id": [ - "9db86dad-0767-4c7b-9260-8839173eaeca" + "762749c2-2084-4f75-b75f-226cf32f6c97" ], "x-ms-arm-service-request-id": [ - "32c2c73d-7c2a-497a-b09f-776206775032" + "258e1de3-a5d5-4ffd-8deb-31f5ec321d03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12532,16 +11904,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11875" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080410Z:9db86dad-0767-4c7b-9260-8839173eaeca" + "WESTUS:20200616T194403Z:762749c2-2084-4f75-b75f-226cf32f6c97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:10 GMT" + "Tue, 16 Jun 2020 19:44:03 GMT" ], "Content-Length": [ "30" @@ -12557,8 +11929,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12566,7 +11938,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12580,13 +11952,13 @@ "10" ], "x-ms-request-id": [ - "57ccdeb8-0b75-46c3-b3c6-28bdf9eae607" + "0a8f8e98-001b-4f08-a8bd-e9d841182c3f" ], "x-ms-correlation-request-id": [ - "270c8533-433c-4acb-a2bb-5b712a316367" + "048e3014-3ad0-4add-bb11-56f3491283f4" ], "x-ms-arm-service-request-id": [ - "0973426b-1512-4c77-b87b-d81271272f02" + "ae5290ec-b0b3-4ca0-a04a-3eecb66c903e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12596,16 +11968,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11874" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080421Z:270c8533-433c-4acb-a2bb-5b712a316367" + "WESTUS:20200616T194413Z:048e3014-3ad0-4add-bb11-56f3491283f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:20 GMT" + "Tue, 16 Jun 2020 19:44:13 GMT" ], "Content-Length": [ "30" @@ -12621,8 +11993,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12630,7 +12002,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12644,13 +12016,13 @@ "10" ], "x-ms-request-id": [ - "0e5bdec7-4659-43ea-bda7-ad18fe14c4e4" + "6a036442-ecf9-42d7-be11-ad6c60367deb" ], "x-ms-correlation-request-id": [ - "5e4902aa-1385-481c-b424-0ac115924006" + "6f603080-699d-4586-a374-33147eeb0054" ], "x-ms-arm-service-request-id": [ - "7552a93c-04f8-4c11-a1e3-428c6a995369" + "380cca92-2eed-4025-bbbc-036f140f60a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12660,16 +12032,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11873" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080431Z:5e4902aa-1385-481c-b424-0ac115924006" + "WESTUS:20200616T194423Z:6f603080-699d-4586-a374-33147eeb0054" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:30 GMT" + "Tue, 16 Jun 2020 19:44:23 GMT" ], "Content-Length": [ "30" @@ -12685,8 +12057,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12694,7 +12066,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12708,13 +12080,13 @@ "10" ], "x-ms-request-id": [ - "4c21e764-4136-42ea-be6b-5f2550a455af" + "84d46829-b424-48ae-8e7a-950d4bda3303" ], "x-ms-correlation-request-id": [ - "bf9b09c1-3944-4089-99d8-357452498cc5" + "a6fc9c20-69bb-4450-b20a-20f94d4843d6" ], "x-ms-arm-service-request-id": [ - "0ebef400-d6b1-4db8-829a-9ebde14c14c9" + "a6f8e426-74ab-42d0-b944-de9eb37c4f39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12724,16 +12096,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11872" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080441Z:bf9b09c1-3944-4089-99d8-357452498cc5" + "WESTUS:20200616T194433Z:a6fc9c20-69bb-4450-b20a-20f94d4843d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:40 GMT" + "Tue, 16 Jun 2020 19:44:33 GMT" ], "Content-Length": [ "30" @@ -12749,8 +12121,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12758,7 +12130,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12772,13 +12144,13 @@ "10" ], "x-ms-request-id": [ - "139443f2-2153-455e-8b07-27504821603f" + "34ba5a78-b2e1-420c-b76f-dfe0a513cde9" ], "x-ms-correlation-request-id": [ - "acd30c4a-6c4f-4e78-b468-658e5a3e180f" + "728b268a-7df7-4a76-8d90-0f98827b04dc" ], "x-ms-arm-service-request-id": [ - "21e88b53-9784-4149-bc48-7738142d9be2" + "b2d0c87f-c42f-4c84-a69c-f1f6a0d127b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12788,16 +12160,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11871" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080451Z:acd30c4a-6c4f-4e78-b468-658e5a3e180f" + "WESTUS:20200616T194443Z:728b268a-7df7-4a76-8d90-0f98827b04dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:04:50 GMT" + "Tue, 16 Jun 2020 19:44:43 GMT" ], "Content-Length": [ "30" @@ -12813,8 +12185,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12822,7 +12194,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12836,13 +12208,13 @@ "10" ], "x-ms-request-id": [ - "0086ed11-f371-4a53-b1ab-0a5cd353c368" + "7f2b335c-9c8f-4e82-9189-1337fcd9325b" ], "x-ms-correlation-request-id": [ - "260afb5b-0a6f-441f-8143-b42954215a60" + "62a7de47-7972-4c30-a3b6-4913d507debd" ], "x-ms-arm-service-request-id": [ - "dd67db59-267f-4140-ac39-652cf54352ac" + "0bcff521-d5ba-439a-b841-cc3fc0065c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12852,16 +12224,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11870" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080501Z:260afb5b-0a6f-441f-8143-b42954215a60" + "WESTUS:20200616T194453Z:62a7de47-7972-4c30-a3b6-4913d507debd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:00 GMT" + "Tue, 16 Jun 2020 19:44:53 GMT" ], "Content-Length": [ "30" @@ -12877,8 +12249,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12886,7 +12258,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12900,13 +12272,13 @@ "10" ], "x-ms-request-id": [ - "232b8f03-e5f8-47ef-9a0c-151aa959d81b" + "f383580d-779e-469c-a717-0baa8382fac8" ], "x-ms-correlation-request-id": [ - "8c92705d-4f64-4ea4-b83f-16e0aca4e874" + "719e1757-63f7-4d97-b93b-dbe9d6bd3d0b" ], "x-ms-arm-service-request-id": [ - "4a137488-4e82-4af0-9019-bf00bdf0494c" + "f94a2cdc-95bb-43a9-bed3-003e02cafc96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -12916,16 +12288,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11874" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080511Z:8c92705d-4f64-4ea4-b83f-16e0aca4e874" + "WESTUS:20200616T194503Z:719e1757-63f7-4d97-b93b-dbe9d6bd3d0b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:10 GMT" + "Tue, 16 Jun 2020 19:45:03 GMT" ], "Content-Length": [ "30" @@ -12941,8 +12313,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -12950,7 +12322,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -12964,32 +12336,32 @@ "10" ], "x-ms-request-id": [ - "ebbfbc22-1ee4-4734-92b8-a284156d2a74" + "2bf56404-0a3d-44e1-958b-0b5b56530ff5" ], "x-ms-correlation-request-id": [ - "dc55cffd-6278-4422-b1e2-a2ad5130fe04" + "614c6cd9-ac17-4172-aafc-345134031c54" ], "x-ms-arm-service-request-id": [ - "3f0c1e32-fb54-483d-9f18-f9a6a9c0e1b8" + "c97a8a02-449a-4d06-b50b-ac5622c9ea00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080521Z:dc55cffd-6278-4422-b1e2-a2ad5130fe04" + "WESTUS:20200616T194513Z:614c6cd9-ac17-4172-aafc-345134031c54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:21 GMT" + "Tue, 16 Jun 2020 19:45:13 GMT" ], "Content-Length": [ "30" @@ -13005,8 +12377,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13014,7 +12386,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13028,13 +12400,13 @@ "10" ], "x-ms-request-id": [ - "cc0152c1-eedb-4075-a700-36389b34c88c" + "0def9cbd-b740-4278-a14c-735dab429aa1" ], "x-ms-correlation-request-id": [ - "5232e97f-b269-431b-b8ed-fbb85e54801c" + "9a5f5ced-7045-40be-b0f0-77ad91b72e4b" ], "x-ms-arm-service-request-id": [ - "a6908c51-e449-47f7-b5a5-f4bd382fae27" + "9c237278-3575-4fb0-a02b-8c05cc1da939" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13044,16 +12416,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11872" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080531Z:5232e97f-b269-431b-b8ed-fbb85e54801c" + "WESTUS:20200616T194523Z:9a5f5ced-7045-40be-b0f0-77ad91b72e4b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:31 GMT" + "Tue, 16 Jun 2020 19:45:23 GMT" ], "Content-Length": [ "30" @@ -13069,8 +12441,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13078,7 +12450,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13092,13 +12464,13 @@ "10" ], "x-ms-request-id": [ - "6c0f56de-e477-45c5-8b24-a8a542a5fb72" + "acf2d5fe-c433-4dea-9f11-ac7131653f51" ], "x-ms-correlation-request-id": [ - "794d9440-9dfc-496a-abba-c1f6e6699dd8" + "04f27b10-8bd4-4e74-b949-0fc42efa539c" ], "x-ms-arm-service-request-id": [ - "47fa92ab-7e08-4b91-b657-826a7750f875" + "96eb9860-0d22-4531-a836-8c75b0e31ced" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13108,16 +12480,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11871" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080541Z:794d9440-9dfc-496a-abba-c1f6e6699dd8" + "WESTUS:20200616T194533Z:04f27b10-8bd4-4e74-b949-0fc42efa539c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:41 GMT" + "Tue, 16 Jun 2020 19:45:33 GMT" ], "Content-Length": [ "30" @@ -13133,8 +12505,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13142,7 +12514,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13156,13 +12528,13 @@ "10" ], "x-ms-request-id": [ - "8a154c34-ffa2-4e6f-becc-7d8da86b8c1a" + "1108366b-8750-4c3f-8388-e0ab24542ba6" ], "x-ms-correlation-request-id": [ - "7e8cb40a-159b-4c55-b797-27c68115c513" + "fc640f1b-e8a0-44ee-8083-3813c3879767" ], "x-ms-arm-service-request-id": [ - "af340815-f2a3-495e-9702-d5405540eff5" + "9d36aea0-c9f6-41a7-8521-655704aa758b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13172,16 +12544,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11870" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080551Z:7e8cb40a-159b-4c55-b797-27c68115c513" + "WESTUS:20200616T194544Z:fc640f1b-e8a0-44ee-8083-3813c3879767" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:05:51 GMT" + "Tue, 16 Jun 2020 19:45:44 GMT" ], "Content-Length": [ "30" @@ -13197,8 +12569,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13206,7 +12578,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13220,13 +12592,13 @@ "10" ], "x-ms-request-id": [ - "d7ead18c-efec-4c46-ad6e-9c08d04edeb1" + "3caf6210-d759-433b-8a3f-d1f1538a53a5" ], "x-ms-correlation-request-id": [ - "1b4037f3-90f3-4a38-9e33-8301961496cb" + "5620568a-4d5b-458a-9455-b0c2b2e29163" ], "x-ms-arm-service-request-id": [ - "3d65eac0-cda5-4a43-9b21-0ec542d48b80" + "5b575170-77f4-4ae3-af9a-47c0134ea4e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13236,16 +12608,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11869" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080601Z:1b4037f3-90f3-4a38-9e33-8301961496cb" + "WESTUS:20200616T194554Z:5620568a-4d5b-458a-9455-b0c2b2e29163" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:01 GMT" + "Tue, 16 Jun 2020 19:45:53 GMT" ], "Content-Length": [ "30" @@ -13261,8 +12633,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13270,7 +12642,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13284,13 +12656,13 @@ "10" ], "x-ms-request-id": [ - "4c839fea-b138-42d3-b02c-2867c739b486" + "8771d391-8224-4bd4-8924-789049c3e0e0" ], "x-ms-correlation-request-id": [ - "a900d102-e13c-4a3c-aa7b-71e5d7324f56" + "b0e3deb4-e433-473d-b080-b690c917ac36" ], "x-ms-arm-service-request-id": [ - "15903af9-fac3-4304-ac5d-93c04a871dea" + "9d50d7c5-9ebe-42aa-9dc8-63573f914dfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13300,16 +12672,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11868" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080611Z:a900d102-e13c-4a3c-aa7b-71e5d7324f56" + "WESTUS:20200616T194604Z:b0e3deb4-e433-473d-b080-b690c917ac36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:11 GMT" + "Tue, 16 Jun 2020 19:46:03 GMT" ], "Content-Length": [ "30" @@ -13325,8 +12697,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13334,7 +12706,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13348,13 +12720,13 @@ "10" ], "x-ms-request-id": [ - "33464b26-3cf5-4f79-a835-458af7f3813e" + "6c9f09f4-8e45-43d8-bd9d-1a30aa0d9d51" ], "x-ms-correlation-request-id": [ - "43dd512c-89a7-4020-805d-1682b64c4eea" + "1b10ef47-a436-4c4f-bd20-c82e7a297fc5" ], "x-ms-arm-service-request-id": [ - "de11bb2a-c9b6-425b-8806-24b88d436a9e" + "980080e5-f0f7-4a83-8e46-b713095afc12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13364,16 +12736,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11867" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080621Z:43dd512c-89a7-4020-805d-1682b64c4eea" + "WESTUS:20200616T194614Z:1b10ef47-a436-4c4f-bd20-c82e7a297fc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:21 GMT" + "Tue, 16 Jun 2020 19:46:13 GMT" ], "Content-Length": [ "30" @@ -13389,8 +12761,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13398,7 +12770,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13412,32 +12784,32 @@ "10" ], "x-ms-request-id": [ - "e4e373f3-5e61-46ca-8c7a-448e78a4b871" + "8ccfc810-1f75-4bf4-886e-f60cb8c6ef40" ], "x-ms-correlation-request-id": [ - "e2a5f1ef-a623-4aca-88f4-fdac8206b3a8" + "88ad31a4-32a7-437a-aea7-e1f17b68172f" ], "x-ms-arm-service-request-id": [ - "8d51009a-ecf7-48f2-8157-38de64fff045" + "aae5fd9d-866d-494f-a0d2-3f5ba67daae3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080631Z:e2a5f1ef-a623-4aca-88f4-fdac8206b3a8" + "WESTUS:20200616T194624Z:88ad31a4-32a7-437a-aea7-e1f17b68172f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:31 GMT" + "Tue, 16 Jun 2020 19:46:23 GMT" ], "Content-Length": [ "30" @@ -13453,8 +12825,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13462,7 +12834,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13476,13 +12848,13 @@ "10" ], "x-ms-request-id": [ - "5546b92a-5765-4497-adfc-2e44fe7d45a6" + "bff58782-afa1-4932-abf4-071ce54a10b6" ], "x-ms-correlation-request-id": [ - "a2db11e6-471a-455c-94a5-56a66c2f4eda" + "518cd1d7-baf9-4de9-8a03-3674b46499d2" ], "x-ms-arm-service-request-id": [ - "0d131bb4-f501-4b50-acd3-cfc120277bb9" + "5c7f1c4e-92eb-4635-8d3b-f06c0b94830c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13492,16 +12864,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11865" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080642Z:a2db11e6-471a-455c-94a5-56a66c2f4eda" + "WESTUS:20200616T194634Z:518cd1d7-baf9-4de9-8a03-3674b46499d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:41 GMT" + "Tue, 16 Jun 2020 19:46:33 GMT" ], "Content-Length": [ "30" @@ -13517,8 +12889,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13526,7 +12898,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13540,13 +12912,13 @@ "10" ], "x-ms-request-id": [ - "335ec848-3bc4-4451-b664-52987eef9e3f" + "72e6b1d7-0ec7-4d00-8c73-71b3ae80c42c" ], "x-ms-correlation-request-id": [ - "aa1b9095-adbf-41d8-8d79-94192f1b5d9c" + "59aa57af-d343-482e-8a7f-5edf0b547c83" ], "x-ms-arm-service-request-id": [ - "371afc2e-9488-4a52-8624-971d8611fd56" + "095dd04f-ae7a-48d9-95d7-a018a154fa77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13556,16 +12928,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11864" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080652Z:aa1b9095-adbf-41d8-8d79-94192f1b5d9c" + "WESTUS:20200616T194644Z:59aa57af-d343-482e-8a7f-5edf0b547c83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:06:51 GMT" + "Tue, 16 Jun 2020 19:46:43 GMT" ], "Content-Length": [ "30" @@ -13581,8 +12953,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13590,7 +12962,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13604,13 +12976,13 @@ "10" ], "x-ms-request-id": [ - "7c145019-4e8f-440b-b7cd-2af209899edc" + "a0a36d75-207d-4b7c-abc4-43e6c0eb2b95" ], "x-ms-correlation-request-id": [ - "d341494c-f859-4645-a803-8d8dd7ae44a0" + "dfd29842-e089-4897-872a-5f8e70aa1508" ], "x-ms-arm-service-request-id": [ - "c696cd68-d4e2-4612-a679-d9dd92c1a68a" + "b5c356c6-89fb-4c87-9b03-a7afac67a9cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13620,16 +12992,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11863" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080702Z:d341494c-f859-4645-a803-8d8dd7ae44a0" + "WESTUS:20200616T194654Z:dfd29842-e089-4897-872a-5f8e70aa1508" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:02 GMT" + "Tue, 16 Jun 2020 19:46:53 GMT" ], "Content-Length": [ "30" @@ -13645,8 +13017,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13654,7 +13026,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13668,13 +13040,13 @@ "10" ], "x-ms-request-id": [ - "fb65b3bb-c603-4597-b54a-9f033a455a56" + "7dd12187-f311-47b6-979e-277bbedfc597" ], "x-ms-correlation-request-id": [ - "712c9613-ce09-4772-8e8f-20c04994fe8a" + "171c2821-8037-4a84-88d0-5f98fb6d4760" ], "x-ms-arm-service-request-id": [ - "a3ef05be-df61-4cb1-8894-8c11a704deb4" + "07096b5a-98bf-4071-92d8-183b93bed517" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13684,16 +13056,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11862" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080712Z:712c9613-ce09-4772-8e8f-20c04994fe8a" + "WESTUS:20200616T194704Z:171c2821-8037-4a84-88d0-5f98fb6d4760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:12 GMT" + "Tue, 16 Jun 2020 19:47:03 GMT" ], "Content-Length": [ "30" @@ -13709,8 +13081,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13718,7 +13090,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13732,13 +13104,13 @@ "10" ], "x-ms-request-id": [ - "eccae471-0b33-4f2d-8e32-2dea1ea3a65a" + "b8feb47c-c4e3-4fdc-80fe-6cc1192da9d3" ], "x-ms-correlation-request-id": [ - "7492e6df-6df7-4147-96f4-27592afa0a94" + "1545e55f-04bb-4f9a-b802-affd80b97977" ], "x-ms-arm-service-request-id": [ - "8e92cafb-654c-463e-869a-c68b5c6f6789" + "47c335b5-8465-435b-87dd-3c19add3eca3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13748,16 +13120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11861" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080722Z:7492e6df-6df7-4147-96f4-27592afa0a94" + "WESTUS:20200616T194714Z:1545e55f-04bb-4f9a-b802-affd80b97977" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:22 GMT" + "Tue, 16 Jun 2020 19:47:13 GMT" ], "Content-Length": [ "30" @@ -13773,8 +13145,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13782,7 +13154,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13796,13 +13168,13 @@ "10" ], "x-ms-request-id": [ - "16e14a82-54de-40e1-862d-34ba0b178795" + "f4054814-611b-40fb-ad68-fe35f1fd5618" ], "x-ms-correlation-request-id": [ - "738c6088-892c-4616-adef-acf4181e8e85" + "6a70642a-a540-4945-9569-6cec5df2584f" ], "x-ms-arm-service-request-id": [ - "8ade510d-9c2a-4be8-b110-d0f7eccadbd8" + "0bfe4304-2a29-4ce1-8b88-4f9ceec26c67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13812,16 +13184,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11860" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080732Z:738c6088-892c-4616-adef-acf4181e8e85" + "WESTUS:20200616T194724Z:6a70642a-a540-4945-9569-6cec5df2584f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:32 GMT" + "Tue, 16 Jun 2020 19:47:23 GMT" ], "Content-Length": [ "30" @@ -13837,8 +13209,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13846,7 +13218,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13860,13 +13232,13 @@ "10" ], "x-ms-request-id": [ - "31b2ee0a-3fc0-44bd-862d-bb5558ea627b" + "47743735-2d88-45d8-900a-f272f203a0be" ], "x-ms-correlation-request-id": [ - "f4f6586c-a77f-4fec-8826-cd7dcc36928a" + "07090862-6c51-4f61-a9e3-717cd36037bf" ], "x-ms-arm-service-request-id": [ - "d7bd7d1b-2ec4-4c69-b187-2ebc90880035" + "4343f90c-be76-483b-a1af-667c5a99f012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13876,16 +13248,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11859" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080742Z:f4f6586c-a77f-4fec-8826-cd7dcc36928a" + "WESTUS:20200616T194734Z:07090862-6c51-4f61-a9e3-717cd36037bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:42 GMT" + "Tue, 16 Jun 2020 19:47:34 GMT" ], "Content-Length": [ "30" @@ -13901,8 +13273,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13910,7 +13282,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13924,13 +13296,13 @@ "10" ], "x-ms-request-id": [ - "91ba17b1-b98e-46aa-ae1d-13b5b656de77" + "a542a091-1f57-4d3e-9ede-e779bf51a4e9" ], "x-ms-correlation-request-id": [ - "7bbecab4-58ee-46ef-ab2c-94c068eded76" + "2162edf3-537c-412f-93cb-046915a98501" ], "x-ms-arm-service-request-id": [ - "2799e5ab-5c7e-451e-a985-eb5b600d4da4" + "2ed61d42-d7d8-4143-aad7-4bd323a30b7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -13940,16 +13312,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11858" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080752Z:7bbecab4-58ee-46ef-ab2c-94c068eded76" + "WESTUS:20200616T194744Z:2162edf3-537c-412f-93cb-046915a98501" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:07:52 GMT" + "Tue, 16 Jun 2020 19:47:44 GMT" ], "Content-Length": [ "30" @@ -13965,8 +13337,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -13974,7 +13346,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -13988,13 +13360,13 @@ "10" ], "x-ms-request-id": [ - "ad32a796-61c4-487f-9bba-1502bf546127" + "40abefbd-5687-423d-b458-e31ea7a455b5" ], "x-ms-correlation-request-id": [ - "c2a0a543-a3e4-42fb-b5da-333dcb7022e1" + "f6cf7b13-6970-4051-81f1-d8d82442a318" ], "x-ms-arm-service-request-id": [ - "9f692c75-9de9-4bf9-bc2e-ed1d9a94a158" + "041ad3e2-eec6-4ee3-a5ba-8e5d90b8e3bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14004,16 +13376,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11857" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080802Z:c2a0a543-a3e4-42fb-b5da-333dcb7022e1" + "WESTUS:20200616T194754Z:f6cf7b13-6970-4051-81f1-d8d82442a318" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:02 GMT" + "Tue, 16 Jun 2020 19:47:54 GMT" ], "Content-Length": [ "30" @@ -14029,8 +13401,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14038,7 +13410,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14052,13 +13424,13 @@ "10" ], "x-ms-request-id": [ - "b0ddfd75-ab8b-4792-ba28-1ea924ae7c19" + "8628e843-eead-4447-8120-3b4bcbea47e4" ], "x-ms-correlation-request-id": [ - "ef7e5a99-a9e8-4d05-bd50-40a5c20d870a" + "955dec3b-8e23-4234-88df-972c94a0b719" ], "x-ms-arm-service-request-id": [ - "af7e38e9-b366-44ef-b135-a635849ccdeb" + "8971753c-bffd-4238-80cd-0f4dfb2c7308" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14068,16 +13440,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11856" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080812Z:ef7e5a99-a9e8-4d05-bd50-40a5c20d870a" + "WESTUS:20200616T194805Z:955dec3b-8e23-4234-88df-972c94a0b719" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:12 GMT" + "Tue, 16 Jun 2020 19:48:04 GMT" ], "Content-Length": [ "30" @@ -14093,8 +13465,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14102,7 +13474,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14113,13 +13485,13 @@ "no-cache" ], "x-ms-request-id": [ - "4e84a933-9935-40ce-bdcd-9aef076d8d00" + "b2725f86-80b5-400b-8d77-9782e47946c0" ], "x-ms-correlation-request-id": [ - "611ba76c-52bf-42e9-9a91-c2f860cdacdf" + "aacc7c23-cb4d-4ad2-8da5-be68826cbf34" ], "x-ms-arm-service-request-id": [ - "f82b8cfa-51e9-46c0-964a-e84528477950" + "5da99008-4004-454d-87fc-a1c4f79f0007" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14129,16 +13501,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11855" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080822Z:611ba76c-52bf-42e9-9a91-c2f860cdacdf" + "WESTUS:20200616T194815Z:aacc7c23-cb4d-4ad2-8da5-be68826cbf34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:22 GMT" + "Tue, 16 Jun 2020 19:48:14 GMT" ], "Content-Length": [ "29" @@ -14154,8 +13526,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzQ1NjlmNTUzLWJhMTItNDA5YS1iMWVkLWU2ZGM0ZDlmMTRiZD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2ZjMWFiMTIxLWIwYzMtNDllZi04ZjlkLWYzMzNmYjljNWZmZT9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14163,7 +13535,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14174,22 +13546,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01" ], "x-ms-request-id": [ - "4569f553-ba12-409a-b1ed-e6dc4d9f14bd" + "fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4569f553-ba12-409a-b1ed-e6dc4d9f14bd?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/fc1ab121-b0c3-49ef-8f9d-f333fb9c5ffe?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "7df3a01b-1b1e-464e-b0f7-9e500ff5e3a1" + "532051dc-30e6-4992-b5f8-3b9c21b711bd" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "030bdb42-b580-4d79-b0b4-276e2a9c8d8e" + "f862a8b1-88ec-4d1d-b468-152048123f32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14199,16 +13571,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11854" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080822Z:3b15c9fa-905f-4d02-b3ba-6a83a2d95790" + "WESTUS:20200616T194815Z:2cf4aba9-94f0-4378-9dab-af28767e21a5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:22 GMT" + "Tue, 16 Jun 2020 19:48:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -14221,13 +13593,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualHubs/ps7830?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbEh1YnMvcHM3ODMwP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualHubs/ps8124?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsSHVicy9wczgxMjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89fa56c7-21ac-4ca9-9bbd-ab37379191de" + "fa4c8d93-377a-4972-a9f7-37c6298b018d" ], "Accept-Language": [ "en-US" @@ -14236,7 +13608,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14247,25 +13619,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "f202fc7e-cabb-4eef-bb68-118bc033e606" + "6d7a8e35-50a7-4d67-8e3f-c08264010f9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "9d2aee57-4c67-4619-9ece-90caca31c8d9" + "e1050d83-8f80-49a0-86aa-f775c1afd505" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e5a08606-acdf-488f-8096-a2bbf526f19e" + "cd4e955e-7149-4cc0-b054-20f850d9ed4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14278,13 +13650,13 @@ "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080823Z:9d2aee57-4c67-4619-9ece-90caca31c8d9" + "WESTUS:20200616T194815Z:e1050d83-8f80-49a0-86aa-f775c1afd505" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:22 GMT" + "Tue, 16 Jun 2020 19:48:15 GMT" ], "Expires": [ "-1" @@ -14297,8 +13669,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14306,7 +13678,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14320,13 +13692,13 @@ "10" ], "x-ms-request-id": [ - "f181c2c1-b72a-4215-b308-79d7e5854a80" + "d518bb36-0d3c-45dd-b2d4-f6b0989ebe7b" ], "x-ms-correlation-request-id": [ - "d7cb9311-68e9-46e6-ae25-b9e1787d3a7e" + "3b0ad1b2-b099-45bb-a7fd-e117de2f2701" ], "x-ms-arm-service-request-id": [ - "57646322-4af8-4123-92b5-a10116a3f6e9" + "f47d1fc8-47e2-42fd-8223-89bc7cf1dbae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14336,16 +13708,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080833Z:d7cb9311-68e9-46e6-ae25-b9e1787d3a7e" + "WESTUS:20200616T194825Z:3b0ad1b2-b099-45bb-a7fd-e117de2f2701" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:32 GMT" + "Tue, 16 Jun 2020 19:48:25 GMT" ], "Content-Length": [ "30" @@ -14361,8 +13733,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14370,7 +13742,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14384,13 +13756,13 @@ "10" ], "x-ms-request-id": [ - "f093adbe-164e-421b-b255-10186e863219" + "d296f7eb-15e1-4fa3-a7a7-335701611c3c" ], "x-ms-correlation-request-id": [ - "8e0c6188-0f6b-4a71-b9c8-759dcd5d91c5" + "822e5d42-957b-4cd7-816a-f7bae42f1ad1" ], "x-ms-arm-service-request-id": [ - "6e58f1bb-6b17-41c5-b75b-9cd76ad06b79" + "1db59fb1-c2fd-4de8-af22-98c5caeedcd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14400,16 +13772,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080843Z:8e0c6188-0f6b-4a71-b9c8-759dcd5d91c5" + "WESTUS:20200616T194836Z:822e5d42-957b-4cd7-816a-f7bae42f1ad1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:42 GMT" + "Tue, 16 Jun 2020 19:48:35 GMT" ], "Content-Length": [ "30" @@ -14425,8 +13797,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14434,7 +13806,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14448,13 +13820,13 @@ "10" ], "x-ms-request-id": [ - "949e4864-48af-436a-8365-d40b689f4fe0" + "bff0454d-575e-485f-875a-9bc03aa7e1bb" ], "x-ms-correlation-request-id": [ - "59ab3a55-42ce-4ad7-bdbd-1d2ed39e0e67" + "da2c50cc-7f9f-4e72-9803-42be00a71971" ], "x-ms-arm-service-request-id": [ - "708ba950-b458-40a1-a1c6-dc263eba0f62" + "f8aea4c6-02ab-4885-aeac-ca9c3018a70a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14464,16 +13836,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080853Z:59ab3a55-42ce-4ad7-bdbd-1d2ed39e0e67" + "WESTUS:20200616T194846Z:da2c50cc-7f9f-4e72-9803-42be00a71971" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:08:52 GMT" + "Tue, 16 Jun 2020 19:48:45 GMT" ], "Content-Length": [ "30" @@ -14489,8 +13861,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14498,7 +13870,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14512,13 +13884,13 @@ "10" ], "x-ms-request-id": [ - "ef944e82-befe-456a-9ab3-9d8e3e032595" + "a9f157c0-d65e-4d6d-859f-c274b6953e8d" ], "x-ms-correlation-request-id": [ - "827b3bc7-d2f5-4c31-8fa5-02fc5243dbe3" + "5b0d202d-bdf2-4360-be38-b2b510837b73" ], "x-ms-arm-service-request-id": [ - "e6f11770-a713-468d-ac07-688ca9a3a62f" + "4417b05a-e3c1-49fc-baa0-93d5d9f15903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14528,16 +13900,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080903Z:827b3bc7-d2f5-4c31-8fa5-02fc5243dbe3" + "WESTUS:20200616T194856Z:5b0d202d-bdf2-4360-be38-b2b510837b73" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:02 GMT" + "Tue, 16 Jun 2020 19:48:55 GMT" ], "Content-Length": [ "30" @@ -14553,8 +13925,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14562,7 +13934,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14576,13 +13948,13 @@ "10" ], "x-ms-request-id": [ - "f96b488c-2be3-4393-93d0-be0a6fe7474b" + "70b60857-97de-4f39-b5bd-20cbaf7cdda6" ], "x-ms-correlation-request-id": [ - "83d3c037-08e8-4f4a-b616-421d80e65c9e" + "ba515fd8-1aee-48c4-b7fc-418e910ab4f6" ], "x-ms-arm-service-request-id": [ - "88ce3996-005b-46eb-b197-7e42f5824ac2" + "3ab82d38-3803-4df8-a1b9-f580ff74b256" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14592,16 +13964,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080913Z:83d3c037-08e8-4f4a-b616-421d80e65c9e" + "WESTUS:20200616T194906Z:ba515fd8-1aee-48c4-b7fc-418e910ab4f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:12 GMT" + "Tue, 16 Jun 2020 19:49:05 GMT" ], "Content-Length": [ "30" @@ -14617,8 +13989,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14626,7 +13998,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14640,13 +14012,13 @@ "10" ], "x-ms-request-id": [ - "04f887ef-8e6f-44c2-89d2-6758c953a965" + "bd366aec-32de-425c-ad47-10c1f3704ae7" ], "x-ms-correlation-request-id": [ - "eaad0abb-cbea-492d-b6c7-7fa511b3513c" + "73e0eef8-d767-414e-b398-80227146f03b" ], "x-ms-arm-service-request-id": [ - "50d61cfd-9d45-44da-8fe0-be517b3ab51a" + "c1f9916a-f74a-4f06-b760-56611e635d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14656,16 +14028,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080923Z:eaad0abb-cbea-492d-b6c7-7fa511b3513c" + "WESTUS:20200616T194916Z:73e0eef8-d767-414e-b398-80227146f03b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:23 GMT" + "Tue, 16 Jun 2020 19:49:15 GMT" ], "Content-Length": [ "30" @@ -14681,8 +14053,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14690,7 +14062,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14704,13 +14076,13 @@ "10" ], "x-ms-request-id": [ - "ddfd9467-52d0-43b3-b34e-0b5beab2f13b" + "dd3b3407-c3d1-4631-b870-3b0c2f45bf74" ], "x-ms-correlation-request-id": [ - "eab8519c-954e-490c-b04e-f34a172ee88a" + "37b09390-173e-4e77-8a1b-d42ea59b222f" ], "x-ms-arm-service-request-id": [ - "6103eb3a-6066-4c16-b603-9460130764ef" + "a93de209-00dd-49ec-8798-652ead38c818" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14720,16 +14092,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080933Z:eab8519c-954e-490c-b04e-f34a172ee88a" + "WESTUS:20200616T194926Z:37b09390-173e-4e77-8a1b-d42ea59b222f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:33 GMT" + "Tue, 16 Jun 2020 19:49:26 GMT" ], "Content-Length": [ "30" @@ -14745,8 +14117,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14754,7 +14126,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14768,13 +14140,13 @@ "10" ], "x-ms-request-id": [ - "655f960c-8d48-4475-a72a-8fcec5da126e" + "f8cb0756-6035-4dfa-a261-814a3ef6ee12" ], "x-ms-correlation-request-id": [ - "18ad02de-b870-42a2-87e6-fb27ae7d05c9" + "8c125d33-7c23-4728-b0f0-8ff7552338a0" ], "x-ms-arm-service-request-id": [ - "81582a1a-169c-46e7-8383-180da3b103a2" + "3feac0e0-ce97-4411-b18b-9ea7cead50ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14784,16 +14156,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080943Z:18ad02de-b870-42a2-87e6-fb27ae7d05c9" + "WESTUS:20200616T194936Z:8c125d33-7c23-4728-b0f0-8ff7552338a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:43 GMT" + "Tue, 16 Jun 2020 19:49:36 GMT" ], "Content-Length": [ "30" @@ -14809,8 +14181,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14818,7 +14190,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14832,13 +14204,13 @@ "10" ], "x-ms-request-id": [ - "cbdf2d1f-f7d0-4a3f-85d8-165c685d21bc" + "d4c0ee73-4043-4c8d-9b49-f7c817f2e08e" ], "x-ms-correlation-request-id": [ - "c7de491d-ba3a-4406-a661-6594a8315248" + "b1c4776f-8464-4e0a-8b5a-1e00640721ee" ], "x-ms-arm-service-request-id": [ - "ef8578df-9469-4815-824f-5abb787c55ec" + "070d96d5-6751-4c20-a203-fbbcb20d2f47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14848,16 +14220,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T080953Z:c7de491d-ba3a-4406-a661-6594a8315248" + "WESTUS:20200616T194946Z:b1c4776f-8464-4e0a-8b5a-1e00640721ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:09:53 GMT" + "Tue, 16 Jun 2020 19:49:46 GMT" ], "Content-Length": [ "30" @@ -14873,8 +14245,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14882,7 +14254,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14896,13 +14268,13 @@ "10" ], "x-ms-request-id": [ - "fe12285e-2025-4c51-a28e-c85192dce42e" + "8c5332ad-0be6-45c1-ab9b-2bacb9da9d90" ], "x-ms-correlation-request-id": [ - "1d33ff35-2abe-47c9-9784-f98ac9055f3c" + "416e695e-2c53-431a-a440-f63e9fbc9842" ], "x-ms-arm-service-request-id": [ - "b2686909-c61f-4a21-98bc-8dc062c83edf" + "4a700b4e-eef0-4dd7-9cc5-6a36023fba9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14912,16 +14284,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081004Z:1d33ff35-2abe-47c9-9784-f98ac9055f3c" + "WESTUS:20200616T194956Z:416e695e-2c53-431a-a440-f63e9fbc9842" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:03 GMT" + "Tue, 16 Jun 2020 19:49:56 GMT" ], "Content-Length": [ "30" @@ -14937,8 +14309,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -14946,7 +14318,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -14960,13 +14332,13 @@ "10" ], "x-ms-request-id": [ - "2d4655a0-4411-49cf-a681-c84bf40bd43a" + "f14f2bec-42c1-4e87-8924-6ba336c46c92" ], "x-ms-correlation-request-id": [ - "c892ecfb-2f66-420d-983b-6480833b7ee6" + "2e8ea6f0-7f30-48f6-b928-973061496071" ], "x-ms-arm-service-request-id": [ - "a1d98148-ce25-432b-888c-3f455e9e41fa" + "82dbf5e9-c062-49b7-93c2-d57dc7c3a863" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -14976,16 +14348,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081014Z:c892ecfb-2f66-420d-983b-6480833b7ee6" + "WESTUS:20200616T195006Z:2e8ea6f0-7f30-48f6-b928-973061496071" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:13 GMT" + "Tue, 16 Jun 2020 19:50:06 GMT" ], "Content-Length": [ "30" @@ -15001,8 +14373,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15010,7 +14382,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15024,13 +14396,13 @@ "10" ], "x-ms-request-id": [ - "465fcf30-1ee4-4295-b71b-a2c7d7ff9641" + "713bea20-2be5-4ad0-8178-10470bb0b550" ], "x-ms-correlation-request-id": [ - "a0ed0214-b045-4261-9066-659b83e5c953" + "f79572a3-db26-4e12-9256-4eab0f316ff6" ], "x-ms-arm-service-request-id": [ - "1a7c9a84-25b3-4c07-af49-ae576e87c334" + "27ec7d56-5c2b-4126-9109-936958b848f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15040,16 +14412,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081024Z:a0ed0214-b045-4261-9066-659b83e5c953" + "WESTUS:20200616T195016Z:f79572a3-db26-4e12-9256-4eab0f316ff6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:23 GMT" + "Tue, 16 Jun 2020 19:50:16 GMT" ], "Content-Length": [ "30" @@ -15065,8 +14437,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15074,7 +14446,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15088,13 +14460,13 @@ "10" ], "x-ms-request-id": [ - "a3f4adc7-85c4-4889-bbf1-b64cd94d4250" + "7377d433-4035-4758-b5f4-c20cf94a66ee" ], "x-ms-correlation-request-id": [ - "a9648851-6b19-4931-8412-3cf9cdc99b68" + "313022c0-d806-469c-9693-3c93ac0df689" ], "x-ms-arm-service-request-id": [ - "1e86f3a4-5d00-4721-9153-98590f9c833c" + "8005c85f-5b94-4cfb-b8d1-699f03018609" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15104,16 +14476,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11983" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081034Z:a9648851-6b19-4931-8412-3cf9cdc99b68" + "WESTUS:20200616T195026Z:313022c0-d806-469c-9693-3c93ac0df689" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:33 GMT" + "Tue, 16 Jun 2020 19:50:26 GMT" ], "Content-Length": [ "30" @@ -15129,8 +14501,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15138,7 +14510,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15152,13 +14524,13 @@ "10" ], "x-ms-request-id": [ - "f4f0f984-00e0-4994-aaad-ad83eab50a50" + "592b8b79-fb07-4a94-813b-2536c5ea8dea" ], "x-ms-correlation-request-id": [ - "42fdd942-afa7-4273-ba7a-161c26dffcca" + "7c842826-55ac-4cd6-ba78-16bc8954dcd1" ], "x-ms-arm-service-request-id": [ - "337793d5-dc5a-45b1-b26f-26b0e6e6189e" + "52e7411c-0b9d-4ef6-b792-1f7dfddb5407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15168,16 +14540,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11982" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081044Z:42fdd942-afa7-4273-ba7a-161c26dffcca" + "WESTUS:20200616T195036Z:7c842826-55ac-4cd6-ba78-16bc8954dcd1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:43 GMT" + "Tue, 16 Jun 2020 19:50:36 GMT" ], "Content-Length": [ "30" @@ -15193,8 +14565,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15202,7 +14574,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15216,13 +14588,13 @@ "10" ], "x-ms-request-id": [ - "fa8174fa-cc7d-4635-983f-9a797cb5fbd2" + "9724b1bd-8e00-4aea-84ef-b5018345ba0e" ], "x-ms-correlation-request-id": [ - "65493474-5af1-4b12-b4ff-fa4d2ecafa20" + "49b88880-0806-45dd-a958-d089e66e22a2" ], "x-ms-arm-service-request-id": [ - "2a14b646-cb14-47d1-9fee-506b2117cbb7" + "53191da2-bfc8-4561-95c6-00c347296e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15232,16 +14604,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11981" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081054Z:65493474-5af1-4b12-b4ff-fa4d2ecafa20" + "WESTUS:20200616T195046Z:49b88880-0806-45dd-a958-d089e66e22a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:10:53 GMT" + "Tue, 16 Jun 2020 19:50:46 GMT" ], "Content-Length": [ "30" @@ -15257,8 +14629,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15266,7 +14638,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15280,13 +14652,13 @@ "10" ], "x-ms-request-id": [ - "68e3dd49-c607-4608-83d0-b4519921092d" + "c93e6b5e-2807-489b-9ffe-5b3724751bab" ], "x-ms-correlation-request-id": [ - "6f8e3464-9756-4ce7-b413-6c88adfacaff" + "6f21e455-b548-4ed3-83fc-31afc64bfc5c" ], "x-ms-arm-service-request-id": [ - "69a632e8-90fd-4575-9fc0-e77ec6ca4473" + "b3bd292b-15f7-49f4-ac45-9c372dd1f304" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15296,16 +14668,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11980" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081104Z:6f8e3464-9756-4ce7-b413-6c88adfacaff" + "WESTUS:20200616T195056Z:6f21e455-b548-4ed3-83fc-31afc64bfc5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:03 GMT" + "Tue, 16 Jun 2020 19:50:56 GMT" ], "Content-Length": [ "30" @@ -15321,8 +14693,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15330,7 +14702,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15344,13 +14716,13 @@ "10" ], "x-ms-request-id": [ - "35c0e7bb-e906-493f-a640-c41da92aef16" + "5f21cadd-9ee5-428a-b232-a8f7fe7c2139" ], "x-ms-correlation-request-id": [ - "3b654e71-b855-4130-94ac-1b4a9970f556" + "2934374b-426c-47a5-a980-7bc598986d9d" ], "x-ms-arm-service-request-id": [ - "d3598615-f95c-4abc-b52b-b0d24074d860" + "0929441a-f58a-4c90-b041-91f129747405" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15360,16 +14732,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11979" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081114Z:3b654e71-b855-4130-94ac-1b4a9970f556" + "WESTUS:20200616T195106Z:2934374b-426c-47a5-a980-7bc598986d9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:13 GMT" + "Tue, 16 Jun 2020 19:51:06 GMT" ], "Content-Length": [ "30" @@ -15385,8 +14757,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15394,7 +14766,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15408,13 +14780,13 @@ "10" ], "x-ms-request-id": [ - "1f4ea34d-d658-4147-8837-28e5425e95b3" + "6199e91e-11ad-4429-8ed6-18638deeb950" ], "x-ms-correlation-request-id": [ - "51c9d08d-af04-4445-9a33-4a99abf20805" + "4be99007-4b9a-4529-897f-3eb3b644fdae" ], "x-ms-arm-service-request-id": [ - "e4f2d740-b66b-4291-a263-d854527ca288" + "a02e3309-8818-4fc9-ada4-6ac6f91a6687" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15424,16 +14796,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11978" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081124Z:51c9d08d-af04-4445-9a33-4a99abf20805" + "WESTUS:20200616T195117Z:4be99007-4b9a-4529-897f-3eb3b644fdae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:24 GMT" + "Tue, 16 Jun 2020 19:51:16 GMT" ], "Content-Length": [ "30" @@ -15449,8 +14821,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15458,7 +14830,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15472,13 +14844,13 @@ "10" ], "x-ms-request-id": [ - "9c231c93-ce2c-498b-ab11-fb7fe7fc420e" + "88d33a58-8f54-4ed1-9159-996ebda509bf" ], "x-ms-correlation-request-id": [ - "31993701-77ea-4051-8a0b-8aa17cf8e6a5" + "92c77b9a-455a-4688-a591-ae2b52578a8a" ], "x-ms-arm-service-request-id": [ - "8a43834f-5d5b-40ef-b5f7-d6dced8e4f7c" + "85d43e26-20f6-4524-aaae-a7d8f7e583f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15488,16 +14860,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11977" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081134Z:31993701-77ea-4051-8a0b-8aa17cf8e6a5" + "WESTUS:20200616T195127Z:92c77b9a-455a-4688-a591-ae2b52578a8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:34 GMT" + "Tue, 16 Jun 2020 19:51:27 GMT" ], "Content-Length": [ "30" @@ -15513,8 +14885,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15522,7 +14894,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15536,13 +14908,13 @@ "10" ], "x-ms-request-id": [ - "302e4ba3-ea30-4aff-913a-7a24dd703248" + "ee473495-4858-4c3a-951f-b37570d90188" ], "x-ms-correlation-request-id": [ - "0bb7be18-fd18-4089-bd7d-1ebd74f6b34a" + "69b3abc7-720f-4815-900d-eceac615498e" ], "x-ms-arm-service-request-id": [ - "84546c3d-7dd4-4991-b7ab-265d142622b6" + "9dd05f7e-de93-4cd1-8afb-383345590407" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15552,16 +14924,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11976" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081144Z:0bb7be18-fd18-4089-bd7d-1ebd74f6b34a" + "WESTUS:20200616T195137Z:69b3abc7-720f-4815-900d-eceac615498e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:44 GMT" + "Tue, 16 Jun 2020 19:51:37 GMT" ], "Content-Length": [ "30" @@ -15577,8 +14949,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15586,7 +14958,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15600,13 +14972,13 @@ "10" ], "x-ms-request-id": [ - "d3098eda-5ae6-4d17-b186-162519485b64" + "5e566700-75b7-4682-a7b7-61d18147d878" ], "x-ms-correlation-request-id": [ - "5c602f04-9101-49b7-9ef9-ac7665c1c966" + "18c09df0-d0a0-46ff-8deb-096a0c0bee45" ], "x-ms-arm-service-request-id": [ - "b88c9a56-4087-4133-9964-00200f1bf439" + "e3a26027-dac1-4e9a-8804-c3a16a58e9b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15616,16 +14988,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11975" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081154Z:5c602f04-9101-49b7-9ef9-ac7665c1c966" + "WESTUS:20200616T195147Z:18c09df0-d0a0-46ff-8deb-096a0c0bee45" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:11:54 GMT" + "Tue, 16 Jun 2020 19:51:47 GMT" ], "Content-Length": [ "30" @@ -15641,8 +15013,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15650,7 +15022,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15664,13 +15036,13 @@ "10" ], "x-ms-request-id": [ - "30e8a3de-fc3b-4f79-9426-d009076325a3" + "8dc9c389-3656-4280-a0c5-c02bfd1ddba7" ], "x-ms-correlation-request-id": [ - "90ab62dd-db01-43a7-a4d1-4deb9860f254" + "8710d2c1-6ae1-4b29-887e-59ec8eab55c9" ], "x-ms-arm-service-request-id": [ - "fc7ca31e-589d-4017-ae06-c047bcba442d" + "4be3ab44-c530-4365-b726-f39b8f4422d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15680,16 +15052,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11974" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081204Z:90ab62dd-db01-43a7-a4d1-4deb9860f254" + "WESTUS:20200616T195157Z:8710d2c1-6ae1-4b29-887e-59ec8eab55c9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:04 GMT" + "Tue, 16 Jun 2020 19:51:57 GMT" ], "Content-Length": [ "30" @@ -15705,8 +15077,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15714,7 +15086,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15728,13 +15100,13 @@ "10" ], "x-ms-request-id": [ - "08a85ff0-68dc-4621-9ccc-824952dc8377" + "4b60faa7-9101-4c87-8bb6-531b852d7390" ], "x-ms-correlation-request-id": [ - "718ba6c6-2cee-472f-9fe5-f05ca5d117fe" + "109750e3-922f-4fa8-8850-7879e1d0d54d" ], "x-ms-arm-service-request-id": [ - "d670d55d-d21f-46df-8f3d-5e043a03fe0b" + "dcb3b8fe-241c-498e-9169-c08540b2fd60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15744,16 +15116,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11973" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081214Z:718ba6c6-2cee-472f-9fe5-f05ca5d117fe" + "WESTUS:20200616T195207Z:109750e3-922f-4fa8-8850-7879e1d0d54d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:14 GMT" + "Tue, 16 Jun 2020 19:52:07 GMT" ], "Content-Length": [ "30" @@ -15769,8 +15141,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15778,7 +15150,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15792,13 +15164,13 @@ "10" ], "x-ms-request-id": [ - "c0d0bd0d-b80d-4b00-9f45-3d755ff74eae" + "8cf15657-abd3-441d-b45b-604c1e5ca1c7" ], "x-ms-correlation-request-id": [ - "6f7aa93a-534d-4d4f-a9f9-48146e1c276f" + "a20e7b37-e836-4e7f-a6ee-b09392499a56" ], "x-ms-arm-service-request-id": [ - "2e0b1c0b-4abf-44c7-9dd0-f777f4082171" + "a98a75c4-fb1b-4d71-8f40-df4b6b458c10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15808,16 +15180,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11972" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081224Z:6f7aa93a-534d-4d4f-a9f9-48146e1c276f" + "WESTUS:20200616T195217Z:a20e7b37-e836-4e7f-a6ee-b09392499a56" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:24 GMT" + "Tue, 16 Jun 2020 19:52:16 GMT" ], "Content-Length": [ "30" @@ -15833,8 +15205,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15842,7 +15214,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15856,13 +15228,13 @@ "10" ], "x-ms-request-id": [ - "a256671b-09e2-405b-b386-539f294a8394" + "9582030d-b232-4119-9083-adfb2c572836" ], "x-ms-correlation-request-id": [ - "5c9a41ec-6370-44dc-812b-df3cd5e062dd" + "76367b65-c9b9-40ac-95bc-9d002fa82cc9" ], "x-ms-arm-service-request-id": [ - "a3fd1b46-d01c-462f-985f-bba76a5059d6" + "8457a0cc-75fd-4d60-8ca2-40e8308e5406" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -15872,16 +15244,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081234Z:5c9a41ec-6370-44dc-812b-df3cd5e062dd" + "WESTUS:20200616T195227Z:76367b65-c9b9-40ac-95bc-9d002fa82cc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:34 GMT" + "Tue, 16 Jun 2020 19:52:26 GMT" ], "Content-Length": [ "30" @@ -15897,8 +15269,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15906,7 +15278,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15920,32 +15292,32 @@ "10" ], "x-ms-request-id": [ - "6e033940-fe26-4a9b-80ef-d803837ce792" + "bb7180a2-1ff3-45b4-a3bb-40ed76dee027" ], "x-ms-correlation-request-id": [ - "224cda1e-beb1-49a0-aab2-69b6b3e0c7d2" + "54aebcff-b96c-4fe8-8d54-753ea4e7e645" ], "x-ms-arm-service-request-id": [ - "fe4deb49-288a-47dc-a10e-ebe890e5e26c" + "fa4daa31-2dbf-42ac-b719-b99fe656c58a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081244Z:224cda1e-beb1-49a0-aab2-69b6b3e0c7d2" + "WESTUS:20200616T195237Z:54aebcff-b96c-4fe8-8d54-753ea4e7e645" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:44 GMT" + "Tue, 16 Jun 2020 19:52:36 GMT" ], "Content-Length": [ "30" @@ -15961,8 +15333,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -15970,7 +15342,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -15984,13 +15356,13 @@ "10" ], "x-ms-request-id": [ - "f6d817f3-4aae-4394-ba11-f37d0e8f8b50" + "1eeb42f9-0222-402a-8912-38ab2a4e6110" ], "x-ms-correlation-request-id": [ - "6cbd56be-f158-457a-bad2-259d028de6ff" + "964b25fb-824f-4179-8bff-0e4064eedb08" ], "x-ms-arm-service-request-id": [ - "4381e9e7-b76c-4ffe-9937-d452e90a3f0c" + "5a7d7111-8af4-4697-89fb-8a9b6940a150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16000,16 +15372,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11969" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081255Z:6cbd56be-f158-457a-bad2-259d028de6ff" + "WESTUS:20200616T195247Z:964b25fb-824f-4179-8bff-0e4064eedb08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:12:54 GMT" + "Tue, 16 Jun 2020 19:52:47 GMT" ], "Content-Length": [ "30" @@ -16025,8 +15397,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16034,7 +15406,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16048,13 +15420,13 @@ "10" ], "x-ms-request-id": [ - "a1beeadb-585a-4abd-8c68-67c24f392fe6" + "05a96ce6-89fa-4ac4-b588-aff0515f399a" ], "x-ms-correlation-request-id": [ - "b9e01ade-911e-4340-9073-57052d6f48e5" + "c3da67aa-1b2f-4bab-8ea3-afc62f49a981" ], "x-ms-arm-service-request-id": [ - "3dd7dd13-202c-487e-9691-0ab50f9208d3" + "03de4289-055d-45c1-a8eb-25712d5e3f63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16064,16 +15436,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11968" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081305Z:b9e01ade-911e-4340-9073-57052d6f48e5" + "WESTUS:20200616T195257Z:c3da67aa-1b2f-4bab-8ea3-afc62f49a981" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:05 GMT" + "Tue, 16 Jun 2020 19:52:57 GMT" ], "Content-Length": [ "30" @@ -16089,8 +15461,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16098,7 +15470,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16112,13 +15484,13 @@ "10" ], "x-ms-request-id": [ - "abdc75d4-cfe5-46b5-b897-c84a0aeface0" + "d06b018b-7edc-401f-ab98-63ad77f5921d" ], "x-ms-correlation-request-id": [ - "80097722-b57c-4d89-96cd-96b1f941de53" + "056ca4f8-3df4-47b3-8635-6296e7024f5c" ], "x-ms-arm-service-request-id": [ - "e36fe5ee-dd17-4342-a5ae-cde8d09e25be" + "2d98413f-e4b0-4327-8646-8c87e5638b94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16128,16 +15500,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11967" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081315Z:80097722-b57c-4d89-96cd-96b1f941de53" + "WESTUS:20200616T195307Z:056ca4f8-3df4-47b3-8635-6296e7024f5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:15 GMT" + "Tue, 16 Jun 2020 19:53:07 GMT" ], "Content-Length": [ "30" @@ -16153,8 +15525,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16162,7 +15534,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16176,13 +15548,13 @@ "10" ], "x-ms-request-id": [ - "a865f27b-caa0-4337-abd8-7a3866e4d7e9" + "27817493-851f-41c6-aac6-63d1aa283d91" ], "x-ms-correlation-request-id": [ - "7c2ee06f-f9b7-4642-af94-065ee208d887" + "05adb419-ecaf-4d72-8875-ef9f3ffeb87b" ], "x-ms-arm-service-request-id": [ - "c5e1b496-e071-48c1-8d8b-27a47e361795" + "d6ab38e0-3c28-4118-91f8-f5fbff8feb20" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16192,16 +15564,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11966" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081325Z:7c2ee06f-f9b7-4642-af94-065ee208d887" + "WESTUS:20200616T195317Z:05adb419-ecaf-4d72-8875-ef9f3ffeb87b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:25 GMT" + "Tue, 16 Jun 2020 19:53:17 GMT" ], "Content-Length": [ "30" @@ -16217,8 +15589,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16226,7 +15598,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16240,13 +15612,13 @@ "10" ], "x-ms-request-id": [ - "ce018dbb-42be-4a74-9cc0-671c09ff564f" + "561b268b-4386-48ac-a115-f9b0f817fc41" ], "x-ms-correlation-request-id": [ - "6716c76e-137b-4c9a-a72e-7ad001b93258" + "141972f0-0ec0-4153-b04a-a6130a8881db" ], "x-ms-arm-service-request-id": [ - "902856d5-ec3e-4eb5-ba75-3a291193196b" + "a629f30c-d794-41a3-8e62-df98400572aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16256,16 +15628,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11965" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081335Z:6716c76e-137b-4c9a-a72e-7ad001b93258" + "WESTUS:20200616T195327Z:141972f0-0ec0-4153-b04a-a6130a8881db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:34 GMT" + "Tue, 16 Jun 2020 19:53:27 GMT" ], "Content-Length": [ "30" @@ -16281,8 +15653,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16290,7 +15662,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16304,13 +15676,13 @@ "10" ], "x-ms-request-id": [ - "9697a0e9-1672-4046-b4c1-a5c93fbd1b0e" + "5c1d51d6-600b-4162-b177-9394bd36eb87" ], "x-ms-correlation-request-id": [ - "d184ba7e-41cc-4ad4-9eb5-5806685b30e1" + "75490e11-e200-4650-8881-ad0278f39035" ], "x-ms-arm-service-request-id": [ - "6cd5929c-65d1-4bd9-b526-1a8c7db8e1f4" + "63a5b616-221b-40ac-bb53-2de2cc67464c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16320,16 +15692,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11964" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081345Z:d184ba7e-41cc-4ad4-9eb5-5806685b30e1" + "WESTUS:20200616T195338Z:75490e11-e200-4650-8881-ad0278f39035" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:44 GMT" + "Tue, 16 Jun 2020 19:53:37 GMT" ], "Content-Length": [ "30" @@ -16345,8 +15717,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16354,7 +15726,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16368,13 +15740,13 @@ "10" ], "x-ms-request-id": [ - "1f3e47fc-ef7b-476f-b8b8-6f0dc23266fb" + "97833ecf-ce89-41fa-bbbf-33acf4263e5f" ], "x-ms-correlation-request-id": [ - "2b6f0e68-6eda-4b98-aad4-3ef1c2e42de5" + "08a25ac3-14e7-4912-8ec8-57dc2d7c75f8" ], "x-ms-arm-service-request-id": [ - "a77e8dac-cf32-4f88-b783-b4230507882d" + "1cf2e0d2-9b23-4e79-923d-fe9b6148612f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16384,16 +15756,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11963" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081355Z:2b6f0e68-6eda-4b98-aad4-3ef1c2e42de5" + "WESTUS:20200616T195348Z:08a25ac3-14e7-4912-8ec8-57dc2d7c75f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:13:54 GMT" + "Tue, 16 Jun 2020 19:53:47 GMT" ], "Content-Length": [ "30" @@ -16409,8 +15781,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16418,7 +15790,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16432,32 +15804,32 @@ "10" ], "x-ms-request-id": [ - "9611b335-3f1f-4eef-a4ec-e545c01f3346" + "69302dfa-98c0-46a0-ba75-e9b842a0202c" ], "x-ms-correlation-request-id": [ - "720cec68-a66d-442d-9271-a460f2fd2fc3" + "f222b554-b8ca-40ac-a38b-41eb52d80b38" ], "x-ms-arm-service-request-id": [ - "eefdc54c-8910-47d4-b678-c1c503dfd140" + "4425307a-2754-4061-aff0-0d909427ac77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081405Z:720cec68-a66d-442d-9271-a460f2fd2fc3" + "WESTUS:20200616T195358Z:f222b554-b8ca-40ac-a38b-41eb52d80b38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:04 GMT" + "Tue, 16 Jun 2020 19:53:58 GMT" ], "Content-Length": [ "30" @@ -16473,8 +15845,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16482,7 +15854,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16496,13 +15868,13 @@ "10" ], "x-ms-request-id": [ - "5451c0ca-759e-4c6c-b3ac-7da78c019292" + "18c22bc1-5ea6-46bb-8cd7-6f77a5994b70" ], "x-ms-correlation-request-id": [ - "d7a28d5b-e6ed-4c49-93a3-6bb00a277bc5" + "6565d69f-57bc-462b-b424-62971ec19826" ], "x-ms-arm-service-request-id": [ - "aecbd74a-0a4b-43ba-90e5-3f53ea6279d7" + "fdb4134d-9ce2-4168-af06-dcdbd81153d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16512,16 +15884,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11961" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081415Z:d7a28d5b-e6ed-4c49-93a3-6bb00a277bc5" + "WESTUS:20200616T195408Z:6565d69f-57bc-462b-b424-62971ec19826" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:14 GMT" + "Tue, 16 Jun 2020 19:54:08 GMT" ], "Content-Length": [ "30" @@ -16537,8 +15909,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16546,7 +15918,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16560,13 +15932,13 @@ "10" ], "x-ms-request-id": [ - "c8961a3a-8e6f-4705-8e1f-8031f7101df3" + "37b6889b-bff8-41b4-b57c-77b8ca5d6066" ], "x-ms-correlation-request-id": [ - "79b7b257-61de-4313-9ead-b9f7198b3c4d" + "a9977e52-0e89-43d8-b39b-fb22aa5b37d8" ], "x-ms-arm-service-request-id": [ - "231d8851-5ddd-4463-ad19-8352cb77ff7c" + "87af8171-7d11-45f8-896b-3d97d2e05805" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16576,16 +15948,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11960" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081425Z:79b7b257-61de-4313-9ead-b9f7198b3c4d" + "WESTUS:20200616T195418Z:a9977e52-0e89-43d8-b39b-fb22aa5b37d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:25 GMT" + "Tue, 16 Jun 2020 19:54:18 GMT" ], "Content-Length": [ "30" @@ -16601,8 +15973,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16610,7 +15982,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16624,13 +15996,13 @@ "10" ], "x-ms-request-id": [ - "10696ca4-81eb-469f-9037-350834a42e0d" + "be5c0cc6-c727-4e1f-87b5-272220247d37" ], "x-ms-correlation-request-id": [ - "cb28e4d8-566c-44ba-9508-2fd576e8d576" + "be2fad1e-4e93-4f87-9e41-392656845365" ], "x-ms-arm-service-request-id": [ - "23d80bbf-8fd1-488b-b3f9-f473eae07df2" + "bc9c6875-c14b-4ae5-ba11-5acb677546d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16640,16 +16012,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11959" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081435Z:cb28e4d8-566c-44ba-9508-2fd576e8d576" + "WESTUS:20200616T195428Z:be2fad1e-4e93-4f87-9e41-392656845365" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:35 GMT" + "Tue, 16 Jun 2020 19:54:28 GMT" ], "Content-Length": [ "30" @@ -16665,8 +16037,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16674,7 +16046,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16688,13 +16060,13 @@ "10" ], "x-ms-request-id": [ - "c532353d-84ce-4a69-9e78-c322279341ae" + "62a1db8d-9b86-4860-b84f-613d9a503fb6" ], "x-ms-correlation-request-id": [ - "db575c4c-250d-4046-aa27-4f32be2899b9" + "1edd9125-62fc-4374-9317-5586b3da93de" ], "x-ms-arm-service-request-id": [ - "38dc0ee8-d578-4e08-8bdf-0301f8c55ba5" + "fb4609f9-1c3e-4f9f-87a2-833a529988d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16704,16 +16076,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11958" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081445Z:db575c4c-250d-4046-aa27-4f32be2899b9" + "WESTUS:20200616T195438Z:1edd9125-62fc-4374-9317-5586b3da93de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:45 GMT" + "Tue, 16 Jun 2020 19:54:38 GMT" ], "Content-Length": [ "30" @@ -16729,8 +16101,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16738,7 +16110,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16752,13 +16124,13 @@ "10" ], "x-ms-request-id": [ - "ad321225-bdbc-4e73-8db4-1a5368362589" + "9fb12ffc-8377-4c3f-97df-045f56922b56" ], "x-ms-correlation-request-id": [ - "a7734850-0d18-4c99-9f83-c15306600dc3" + "0b9b6157-679f-45c2-8758-b08c6f03c2ee" ], "x-ms-arm-service-request-id": [ - "a4f92013-da9d-40a5-a234-1fb78b74bf66" + "cedeaa45-f867-4786-8238-349c17df5524" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16768,16 +16140,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11957" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081455Z:a7734850-0d18-4c99-9f83-c15306600dc3" + "WESTUS:20200616T195448Z:0b9b6157-679f-45c2-8758-b08c6f03c2ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:14:55 GMT" + "Tue, 16 Jun 2020 19:54:48 GMT" ], "Content-Length": [ "30" @@ -16793,8 +16165,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16802,7 +16174,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16816,13 +16188,13 @@ "10" ], "x-ms-request-id": [ - "2b61f9d4-5633-47c1-afa9-88fcab72d163" + "206730b4-9845-460b-a923-ac9b74f51bcc" ], "x-ms-correlation-request-id": [ - "58f67591-adeb-4ed1-9451-23d356618148" + "3fb7810a-c441-45aa-896d-3954409b6b28" ], "x-ms-arm-service-request-id": [ - "44b6226b-384c-4afe-a56d-061a7b4d6631" + "9af87ba7-f9b0-45e0-9b8d-bdea9ae02cb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16832,16 +16204,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11956" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081505Z:58f67591-adeb-4ed1-9451-23d356618148" + "WESTUS:20200616T195458Z:3fb7810a-c441-45aa-896d-3954409b6b28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:05 GMT" + "Tue, 16 Jun 2020 19:54:58 GMT" ], "Content-Length": [ "30" @@ -16857,8 +16229,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16866,7 +16238,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16880,13 +16252,13 @@ "10" ], "x-ms-request-id": [ - "d1fa89be-6a97-41c7-a913-e1acbafd9b64" + "1cf9bede-8993-4825-879b-c629ddd84a51" ], "x-ms-correlation-request-id": [ - "070be3c0-c876-4f3e-8a81-2742aa5cc982" + "b58da68c-916d-404d-a902-afbb9862d1b6" ], "x-ms-arm-service-request-id": [ - "86ea6eb8-9f5e-4272-bfa5-238032fc8147" + "7e677a22-9dd3-46cd-8982-f6ddd6f95000" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16896,16 +16268,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11955" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081516Z:070be3c0-c876-4f3e-8a81-2742aa5cc982" + "WESTUS:20200616T195508Z:b58da68c-916d-404d-a902-afbb9862d1b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:15 GMT" + "Tue, 16 Jun 2020 19:55:07 GMT" ], "Content-Length": [ "30" @@ -16921,8 +16293,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16930,7 +16302,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -16944,13 +16316,13 @@ "10" ], "x-ms-request-id": [ - "5f4cc0cc-1bd8-472b-b062-5fbfc6817b0a" + "c632db74-371e-47d8-8e7e-181decdc0193" ], "x-ms-correlation-request-id": [ - "2854b4c5-1527-419d-96b3-3c0fb60ccef5" + "47d2a88c-eb26-4ef9-9e76-dd0d36592d55" ], "x-ms-arm-service-request-id": [ - "9ab9410e-e954-4962-adf1-ad3f4d17e46a" + "9a93f4f9-c09e-461c-b88f-8ac0c2106053" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -16960,16 +16332,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11954" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081526Z:2854b4c5-1527-419d-96b3-3c0fb60ccef5" + "WESTUS:20200616T195518Z:47d2a88c-eb26-4ef9-9e76-dd0d36592d55" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:25 GMT" + "Tue, 16 Jun 2020 19:55:17 GMT" ], "Content-Length": [ "30" @@ -16985,8 +16357,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -16994,7 +16366,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17008,13 +16380,13 @@ "10" ], "x-ms-request-id": [ - "e282c759-fed0-4b4c-98db-c7a60aeabc22" + "eda0cb99-5a37-4f46-9e6d-c28c98b16ddd" ], "x-ms-correlation-request-id": [ - "cc016d3f-7d18-46ec-8240-8ba9ce9b568a" + "3f617210-6ce8-4256-9348-14652356192e" ], "x-ms-arm-service-request-id": [ - "e84c2a2a-9e7e-4bea-b69b-9685f6487086" + "86f5d81b-caa8-4106-9866-f533a7d2391b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17024,16 +16396,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11953" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081536Z:cc016d3f-7d18-46ec-8240-8ba9ce9b568a" + "WESTUS:20200616T195528Z:3f617210-6ce8-4256-9348-14652356192e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:35 GMT" + "Tue, 16 Jun 2020 19:55:27 GMT" ], "Content-Length": [ "30" @@ -17049,8 +16421,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17058,7 +16430,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17072,13 +16444,13 @@ "10" ], "x-ms-request-id": [ - "7b9d5b51-d228-41df-a323-f34354916877" + "fbfb14fe-25df-4320-b995-faa90b316515" ], "x-ms-correlation-request-id": [ - "1a1c5eb5-7139-4c46-bd6e-68611755c957" + "df39cd46-0927-4bed-b1c6-6de47836580c" ], "x-ms-arm-service-request-id": [ - "3f7c42f9-59ce-42e1-940d-9aa1fe30697b" + "c8dce9e9-e716-4323-b002-b50cb5decfa4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17088,16 +16460,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11952" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081546Z:1a1c5eb5-7139-4c46-bd6e-68611755c957" + "WESTUS:20200616T195538Z:df39cd46-0927-4bed-b1c6-6de47836580c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:45 GMT" + "Tue, 16 Jun 2020 19:55:37 GMT" ], "Content-Length": [ "30" @@ -17113,8 +16485,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17122,7 +16494,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17136,13 +16508,13 @@ "10" ], "x-ms-request-id": [ - "d841d246-6ae7-4749-85ba-d4975290e7da" + "0f300700-1552-4346-baab-3dcd60821fe5" ], "x-ms-correlation-request-id": [ - "95fbf015-b24f-42cc-b7de-8976af3fe188" + "98684585-49e9-4c1e-957f-1796e4c5d8b3" ], "x-ms-arm-service-request-id": [ - "1d83b754-56f1-4470-becf-79f74d6c5015" + "44ee2f17-03df-4064-a438-6dab88778208" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17152,16 +16524,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081556Z:95fbf015-b24f-42cc-b7de-8976af3fe188" + "WESTUS:20200616T195548Z:98684585-49e9-4c1e-957f-1796e4c5d8b3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:15:55 GMT" + "Tue, 16 Jun 2020 19:55:47 GMT" ], "Content-Length": [ "30" @@ -17177,8 +16549,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17186,7 +16558,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17200,13 +16572,13 @@ "10" ], "x-ms-request-id": [ - "e6ed171e-2a4f-454e-90ff-147d900e2d6e" + "79d73d99-78a4-4762-afe8-c83a91bf23a7" ], "x-ms-correlation-request-id": [ - "ae49741f-0d5c-43a8-a962-ee616dfb6362" + "7f4f5752-5cb0-417c-a08d-9ae8ed63579e" ], "x-ms-arm-service-request-id": [ - "ec7f3edf-37a5-43fc-adb9-bbe67c99aa83" + "eaeed5c8-f514-434f-aa49-43ae1321f70d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17216,16 +16588,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11950" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081606Z:ae49741f-0d5c-43a8-a962-ee616dfb6362" + "WESTUS:20200616T195558Z:7f4f5752-5cb0-417c-a08d-9ae8ed63579e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:05 GMT" + "Tue, 16 Jun 2020 19:55:57 GMT" ], "Content-Length": [ "30" @@ -17241,8 +16613,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17250,7 +16622,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17261,13 +16633,13 @@ "no-cache" ], "x-ms-request-id": [ - "e00b1e2e-381c-446c-8bfb-378cab8945d1" + "e3015d5d-4d9c-48cd-b4de-eaf729c49985" ], "x-ms-correlation-request-id": [ - "fa574581-9f08-4735-b9d3-e3626ce99d69" + "a91a3573-038e-42e8-99aa-9d60cb5340b2" ], "x-ms-arm-service-request-id": [ - "201dc724-509a-449b-8baf-06a1db44a15d" + "b1156bca-554b-4ad8-9ae1-7bbb598580db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17277,16 +16649,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11949" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081616Z:fa574581-9f08-4735-b9d3-e3626ce99d69" + "WESTUS:20200616T195609Z:a91a3573-038e-42e8-99aa-9d60cb5340b2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:15 GMT" + "Tue, 16 Jun 2020 19:56:08 GMT" ], "Content-Length": [ "29" @@ -17302,8 +16674,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzL2YyMDJmYzdlLWNhYmItNGVlZi1iYjY4LTExOGJjMDMzZTYwNj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzZkN2E4ZTM1LTUwYTctNGQ2Ny04ZTNmLWMwODI2NDAxMGY5Yj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17311,7 +16683,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17322,22 +16694,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01" ], "x-ms-request-id": [ - "f202fc7e-cabb-4eef-bb68-118bc033e606" + "6d7a8e35-50a7-4d67-8e3f-c08264010f9b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/f202fc7e-cabb-4eef-bb68-118bc033e606?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/6d7a8e35-50a7-4d67-8e3f-c08264010f9b?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "9d2aee57-4c67-4619-9ece-90caca31c8d9" + "e1050d83-8f80-49a0-86aa-f775c1afd505" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "e5a08606-acdf-488f-8096-a2bbf526f19e" + "cd4e955e-7149-4cc0-b054-20f850d9ed4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17347,16 +16719,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11948" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081616Z:4d65803f-a661-402a-9fc1-5a9179d0b468" + "WESTUS:20200616T195609Z:e444923e-3d62-402d-99f2-05f4a91c2845" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:15 GMT" + "Tue, 16 Jun 2020 19:56:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17369,13 +16741,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps5557/providers/Microsoft.Network/virtualWans/ps3759?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzNTU1Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbFdhbnMvcHMzNzU5P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourceGroups/ps303/providers/Microsoft.Network/virtualWans/ps4524?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlR3JvdXBzL3BzMzAzL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsV2Fucy9wczQ1MjQ/YXBpLXZlcnNpb249MjAyMC0wNS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7527d23a-ad59-4eac-8ea1-aacfb21c742f" + "1daa2d5f-788b-486e-bb45-7808fdb025ce" ], "Accept-Language": [ "en-US" @@ -17384,7 +16756,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17395,25 +16767,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "2e2c0586-ab94-4d08-95c0-b01752b59a46" + "4ed0967e-4102-47f3-a17e-ab05b5a281d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "93c0c74f-134b-4bb0-b033-396a13b6d7a1" + "0738c7b1-7727-420a-8c04-d374d225ac87" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7b0de7bd-a067-47ba-b5fb-5e6d81ad7bf4" + "dff00806-4ecc-49be-b68e-e5cbbf086289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17426,13 +16798,13 @@ "14999" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081616Z:93c0c74f-134b-4bb0-b033-396a13b6d7a1" + "WESTUS:20200616T195609Z:0738c7b1-7727-420a-8c04-d374d225ac87" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:16 GMT" + "Tue, 16 Jun 2020 19:56:09 GMT" ], "Expires": [ "-1" @@ -17445,8 +16817,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzJlMmMwNTg2LWFiOTQtNGQwOC05NWMwLWIwMTc1MmI1OWE0Nj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzRlZDA5NjdlLTQxMDItNDdmMy1hMTdlLWFiMDViNWEyODFkOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17454,7 +16826,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17465,13 +16837,13 @@ "no-cache" ], "x-ms-request-id": [ - "832fffcf-a5bd-4a61-a8d3-f59f737bfef6" + "49a5c861-84d7-4d67-9230-c5fd23079703" ], "x-ms-correlation-request-id": [ - "39328b24-d90d-40ca-9e31-cfba1b4830c0" + "0e75d525-2895-4328-b28f-1d427aff6e10" ], "x-ms-arm-service-request-id": [ - "6337eb75-bd82-4ce1-9cbd-7e11b91f09d2" + "215a0eaf-463d-4dc6-8fba-a18dd100e3ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17484,13 +16856,13 @@ "11996" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081627Z:39328b24-d90d-40ca-9e31-cfba1b4830c0" + "WESTUS:20200616T195619Z:0e75d525-2895-4328-b28f-1d427aff6e10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:26 GMT" + "Tue, 16 Jun 2020 19:56:19 GMT" ], "Content-Length": [ "29" @@ -17506,8 +16878,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzJlMmMwNTg2LWFiOTQtNGQwOC05NWMwLWIwMTc1MmI1OWE0Nj9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25SZXN1bHRzLzRlZDA5NjdlLTQxMDItNDdmMy1hMTdlLWFiMDViNWEyODFkOD9hcGktdmVyc2lvbj0yMDIwLTA1LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17515,7 +16887,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.1.0" + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0" ] }, "ResponseHeaders": { @@ -17526,22 +16898,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operationResults/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01" ], "x-ms-request-id": [ - "2e2c0586-ab94-4d08-95c0-b01752b59a46" + "4ed0967e-4102-47f3-a17e-ab05b5a281d8" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/2e2c0586-ab94-4d08-95c0-b01752b59a46?api-version=2020-05-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/providers/Microsoft.Network/locations/westcentralus/operations/4ed0967e-4102-47f3-a17e-ab05b5a281d8?api-version=2020-05-01" ], "x-ms-correlation-request-id": [ - "93c0c74f-134b-4bb0-b033-396a13b6d7a1" + "0738c7b1-7727-420a-8c04-d374d225ac87" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "7b0de7bd-a067-47ba-b5fb-5e6d81ad7bf4" + "dff00806-4ecc-49be-b68e-e5cbbf086289" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17554,13 +16926,13 @@ "11995" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081627Z:3aa067e2-1aa7-47dc-b7fb-3c2fa586230c" + "WESTUS:20200616T195619Z:bb6ae5b9-e6ac-4e04-810b-e513c6f1dd2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:26 GMT" + "Tue, 16 Jun 2020 19:56:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -17573,13 +16945,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps5557?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzNTU1Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/resourcegroups/ps303?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL3Jlc291cmNlZ3JvdXBzL3BzMzAzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55943e89-68ea-4c94-b8c8-5249677a0da3" + "91a7fdcf-6797-4379-b5d1-a90908105f2f" ], "Accept-Language": [ "en-US" @@ -17588,7 +16960,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ] }, "ResponseHeaders": { @@ -17599,22 +16971,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-request-id": [ - "ed0b53ad-e2e1-426b-80ab-789aa91e914e" + "ba99079b-1c92-4595-a565-adfe19489310" ], "x-ms-correlation-request-id": [ - "ed0b53ad-e2e1-426b-80ab-789aa91e914e" + "ba99079b-1c92-4595-a565-adfe19489310" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081628Z:ed0b53ad-e2e1-426b-80ab-789aa91e914e" + "WESTUS:20200616T195620Z:ba99079b-1c92-4595-a565-adfe19489310" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17623,7 +16995,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:27 GMT" + "Tue, 16 Jun 2020 19:56:19 GMT" ], "Expires": [ "-1" @@ -17636,8 +17008,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd015MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17645,7 +17017,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ] }, "ResponseHeaders": { @@ -17656,22 +17028,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11998" ], "x-ms-request-id": [ - "04504bcd-4fab-463f-9bd1-82edf7768c10" + "ed52ab92-c974-418d-9994-c88da0770e28" ], "x-ms-correlation-request-id": [ - "04504bcd-4fab-463f-9bd1-82edf7768c10" + "ed52ab92-c974-418d-9994-c88da0770e28" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081643Z:04504bcd-4fab-463f-9bd1-82edf7768c10" + "WESTUS:20200616T195635Z:ed52ab92-c974-418d-9994-c88da0770e28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17680,7 +17052,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:42 GMT" + "Tue, 16 Jun 2020 19:56:34 GMT" ], "Expires": [ "-1" @@ -17693,8 +17065,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd015MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17702,7 +17074,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ] }, "ResponseHeaders": { @@ -17713,22 +17085,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + "d76837e1-c8b5-4b6f-b913-eb164578207d" ], "x-ms-correlation-request-id": [ - "8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + "d76837e1-c8b5-4b6f-b913-eb164578207d" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081658Z:8173c003-2c7d-4c4d-ae1d-07755d1ed6aa" + "WESTUS:20200616T195650Z:d76837e1-c8b5-4b6f-b913-eb164578207d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17737,7 +17109,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:16:57 GMT" + "Tue, 16 Jun 2020 19:56:50 GMT" ], "Expires": [ "-1" @@ -17750,8 +17122,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd015MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17759,7 +17131,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ] }, "ResponseHeaders": { @@ -17770,16 +17142,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-request-id": [ - "5858bf3d-5982-4573-abba-49f11c42a576" + "d0dd0d54-0171-4f6c-8afd-a400f9630426" ], "x-ms-correlation-request-id": [ - "5858bf3d-5982-4573-abba-49f11c42a576" + "d0dd0d54-0171-4f6c-8afd-a400f9630426" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081713Z:5858bf3d-5982-4573-abba-49f11c42a576" + "WESTUS:20200616T195705Z:d0dd0d54-0171-4f6c-8afd-a400f9630426" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17788,7 +17160,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:17:13 GMT" + "Tue, 16 Jun 2020 19:57:05 GMT" ], "Expires": [ "-1" @@ -17801,8 +17173,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzU1NTctV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVMU5UY3RWMFZUVkVORlRsUlNRVXhWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRHTmxiblJ5WVd4MWN5Sjk/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/62364504-2406-418e-971c-05822ff72fad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMwMy1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNjIzNjQ1MDQtMjQwNi00MThlLTk3MWMtMDU4MjJmZjcyZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNd015MVhSVk5VUTBWT1ZGSkJURlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMFkyVnVkSEpoYkhWekluMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -17810,7 +17182,7 @@ "FxVersion/4.6.28207.03", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.14" ] }, "ResponseHeaders": { @@ -17821,16 +17193,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-request-id": [ - "05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + "5ec2a039-9b94-4a25-bd4c-1e344d09b42a" ], "x-ms-correlation-request-id": [ - "05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + "5ec2a039-9b94-4a25-bd4c-1e344d09b42a" ], "x-ms-routing-request-id": [ - "WESTUS:20200615T081713Z:05644ecc-ef5b-4dc7-a74e-dbdf014d59cf" + "WESTUS:20200616T195705Z:5ec2a039-9b94-4a25-bd4c-1e344d09b42a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -17839,7 +17211,7 @@ "nosniff" ], "Date": [ - "Mon, 15 Jun 2020 08:17:13 GMT" + "Tue, 16 Jun 2020 19:57:05 GMT" ], "Expires": [ "-1" @@ -17854,9 +17226,9 @@ ], "Names": { "Test-VHubRouteTableCRUD": [ - "ps5557", - "ps3759", - "ps7830" + "ps303", + "ps4524", + "ps8124" ] }, "Variables": { diff --git a/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs index fca301393f08..d99615f0a758 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/UpdateAzureRmVHubRouteTableCommand.cs @@ -128,10 +128,17 @@ public override void Execute() this.ParentResourceName = parsedParentResourceId.ResourceName; } - hubRouteTableToUpdate = this.GetVHubRouteTable(this.ResourceGroupName, this.ParentResourceName, this.Name); - if (hubRouteTableToUpdate == null) + try { - throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + hubRouteTableToUpdate = this.GetVHubRouteTable(this.ResourceGroupName, this.ParentResourceName, this.Name); + } + catch (Exception ex) + { + if (ex is Microsoft.Azure.Management.Network.Models.ErrorException || ex is Rest.Azure.CloudException) + { + throw new PSArgumentException(Properties.Resources.VHubRouteTableNotFound); + } + throw; } } diff --git a/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs index e864860bc4c8..b418840ca5e2 100644 --- a/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs +++ b/src/Network/Network/Cortex/VHubRouteTable/VHubRouteTableBaseCmdlet.cs @@ -41,20 +41,10 @@ public PSVHubRouteTable ToPsVHubRouteTable(MNM.HubRouteTable routeTable) public PSVHubRouteTable GetVHubRouteTable(string resourceGroupName, string virtualHubName, string name) { - try - { - var routeTable = VHubRouteTableClient.Get(resourceGroupName, virtualHubName, name); - var psVHubRouteTable = ToPsVHubRouteTable(routeTable); - return psVHubRouteTable; - } - catch (Exception ex) - { - if (ex is Microsoft.Azure.Management.Network.Models.ErrorException || ex is Rest.Azure.CloudException) - { - return null; - } - throw; - } + var routeTable = VHubRouteTableClient.Get(resourceGroupName, virtualHubName, name); + var psVHubRouteTable = ToPsVHubRouteTable(routeTable); + + return psVHubRouteTable; } public List ListVHubRouteTables(string resourceGroupName, string virtualHubName)